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/] [pr15349.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR 15349. Merge two PHI nodes. */ /* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-mergephi" } */ int foo (int a, int b) { int t; if (b) { if (a) t = 3; else t = 5; a = 0; } else t = 7; return t; } /* { dg-final { scan-tree-dump-times "PHI" 1 "mergephi"} } */ /* { dg-final { cleanup-tree-dump "mergephi" } } */
Go to most recent revision | Compare with Previous | Blame | View Log