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/] [pr42917.c] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O1 -ftree-loop-linear -fcompare-debug -fdump-tree-ltrans" } */ extern int A[]; void foo () { int i, j; for (i = 0; i < 4; i++) for (j = 255; j >= 0; j--) A[j] = 0; } /* { dg-final { scan-tree-dump "Successfully transformed loop" "ltrans" } } */ /* { dg-final { cleanup-tree-dump "ltrans" } } */
Go to most recent revision | Compare with Previous | Blame | View Log