S
Skarmander
Unless the platform has the equivalent of alloca(), of course.pete said:I would actually expect VLA's to implemented under the hood,
as a malloc call with a free at the end of the block,
and some kludge to accomodate the sizeof operator.
Even without it, it is very likely that for local allocations
specialized versions of malloc() will provide some benefit.
S.