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/] [pr36508.c] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR tree-optimization/36508 */ /* { dg-do compile } */ /* { dg-options "-O -ftree-pre" } */ void foo (short *sp) { int k; k = 1; #define SP0 *sp++ = 1; while (1) { if (k > 6) break; SP0 k++; } k = 1; while (1) { if (k > 6) break; SP0 k++; } #define SP1 SP0 SP0 SP0 SP0 SP0 SP0 SP0 SP0 SP0 SP0 SP0 #define SP2 SP1 SP1 SP1 SP1 SP1 SP1 SP1 SP1 SP1 SP1 SP1 SP2 }
Go to most recent revision | Compare with Previous | Blame | View Log