URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [20030820-1.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O1" } */ /* A test for unreachable blocks removal -- bind_expr whose entry is unreachable, but it contains reachable statements. */ void foo(void) { if (1) { goto bla; } else { xxx: { bla: bar (); return; } goto xxx; } }
Go to most recent revision | Compare with Previous | Blame | View Log