URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [pr21829.c] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 -fdump-tree-phicprop-details" } */ int test(int v) { int x = 0; int u; for (u=0;u<2;u++) { if (u>v) { if (u%2==1) x++; } } return x; } /* { dg-final { scan-tree-dump-times "Original statement:.*% 2\[ \t\n]*Updated statement.*=1" 0 "phicprop3" } } */ /* { dg-final { cleanup-tree-dump "phicprop3" } } */
Go to most recent revision | Compare with Previous | Blame | View Log