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/] [20030917-3.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-store_ccp" } */ extern int printf (const char *, ...); main () { int variable = 0; int p = 1; while (1) { if (p) break; variable = variable + 1; if (variable == 10) break; } printf("%d\n", variable); } /* The argument to "printf" should be a constant, not a variable. */ /* { dg-final { scan-tree-dump-times "printf.*, 0" 1 "store_ccp"} } */ /* { dg-final { cleanup-tree-dump "store_ccp" } } */
Go to most recent revision | Compare with Previous | Blame | View Log