On Mar 25, 2013, at 4:27 AM, Eric Botcazou 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
> against th
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, te