tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Tinycc-devel] VLA implementation


From: Sergey Korshunoff
Subject: Re: [Tinycc-devel] VLA implementation
Date: Sat, 7 Nov 2015 03:16:28 +0300

> 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?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]