> I don't know. Which software do you have that uses VLAs?
VLA -- variable length arrays
int a1[20]; // fixed length array
int i = 20;
int a2[i]; // variable length array

But yes, I don't use a strange GNU rules like escaping VLA from inner
block. Only as usual arrays with calculated at runtime capasity. Is
this usage assumed safe?

_______________________________________________
Tinycc-devel mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to