On Mar 25, 2013, at 4:27 AM, Eric Botcazou <ebotca...@adacore.com> wrote: > gcc.c-torture/execute/20011008-3.c has these lines: > > #ifndef STACK_SIZE > #define VLEN 1235 > #else > #define VLEN (STACK_SIZE/10) > #endif > > which means that VLEN is _not_ capped if STACK_SIZE is defined, which goes > against the very purpose of STACK_SIZE in the testing framework. > > Fixed thusly, tested on x86_64-suse-linux, OK for the mainline?
Ok. > 2013-03-25 Eric Botcazou <ebotca...@adacore.com> > > * gcc.c-torture/execute/20011008-3.c: Cap VLEN with STACK_SIZE too.