Merge pull request #2383 from eisbehr/target-features-fix

Fix: -target-feature list missing commas
This commit is contained in:
gingerBill
2023-03-14 12:49:43 +00:00
committed by GitHub

View File

@@ -1369,6 +1369,7 @@ gb_internal char const *target_features_set_to_cstring(gbAllocator allocator, bo
gb_memmove(features + len, feature.text, feature.len);
len += feature.len;
if (with_quotes) features[len++] = '"';
i += 1;
}
features[len++] = 0;