URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [graphite/] [run-id-3.c] - Rev 298
Compare with Previous | Blame | View Log
extern void abort (void); __attribute__ ((noinline)) int foo (int *zzz, unsigned int kk) { int a, b, d; a = b = 0; for (d = 0; d < 1000; d++) { if (kk != 0) b = *zzz; } return b; } int main (void) { if (foo (0, 0) != 0) abort(); return 0; }