[testsuite] Cap VLEN in gcc.c-torture/execute/20011008-3.c

2013-03-25 Thread Eric Botcazou
Hi, gcc.c-torture/execute/20011008-3.c has these lines: #ifndef STACK_SIZE #define VLEN1235 #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,

Re: [testsuite] Cap VLEN in gcc.c-torture/execute/20011008-3.c

2013-03-25 Thread Mike Stump
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 VLEN1235 #else #define VLEN (STACK_SIZE/10) #endif which means that VLEN is _not_ capped if STACK_SIZE is defined, which goes