URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [Warray-bounds-2.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* Test that -Warray-bounds is enabled by -Wall */ /* { dg-options "-O2 -Wall" } */ int a[10]; int* f(void) { a[-1] = 0; /* { dg-warning "array subscript" } */ return a; }
Go to most recent revision | Compare with Previous | Blame | View Log