2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 920501-12.c
blob61ff947270f480e468a141c513b218806acabb61
1 /* This test fails on HC11/HC12 when it is compiled without -mshort because
2 the stack arrays are too large. Force to use 16-bit ints for it. */
3 /* { dg-do assemble { xfail m6811-*-* m6812-*-* } } */
5 x(x){ return 3 + x;}
6 a(x){int y[994]; return 3 + x;}
7 b(x){int y[999]; return 2*(x + 3);}
8 A(x){int y[9999];return 2*(x + 3);}
9 B(x){int y[9949];return 3 + x;}