URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [20111216-1.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O -fexceptions -fnon-call-exceptions" } */ extern void f2 () __attribute__ ((noreturn)); void f1 () { unsigned char a[8]; unsigned int i; for (i = 0; i < 8; i++) { if (i > 8) f2 (); a[i] = i <= 8; } }