URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20010518-2.c] - Rev 859
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* This test fails on HC11/HC12 when it is compiled without -mshort because the array is too large (INT_MAX/2 > 64K). Force to use 16-bit ints for it. */ /* { dg-options "-w -mshort" { target m6811-*-* m6812-*-* } } */ /* Large static storage. */ #include <limits.h> static volatile char chars_1[INT_MAX / 2]; static volatile char chars_2[1]; int foo (void) { chars_1[10] = 'y'; chars_2[0] = 'x'; }
Go to most recent revision | Compare with Previous | Blame | View Log