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.2.2/] [gcc/] [testsuite/] [gcc.dg/] [unroll-1.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR optimization/8599 */ /* { dg-do run } */ /* { dg-options "-O2 -funroll-loops" } */ /* { dg-options "-mtune=k6 -O2 -funroll-loops" { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */ extern void abort (void); int array[6] = { 1,2,3,4,5,6 }; void foo() { int i; for (i = 0; i < 5; i++) array[i] = 0; } int main() { foo(); if (array[0] || array [1] || array[2] || array[3] || array[4]) abort (); if (array[5] != 6) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log