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/] [ssa-dse-2.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 -fdump-tree-dse1" } */ int a, b, c; int foo () { int *p; if (c) p = &a; else p = &b; *p = 3; *p = 4; return *p; } /* We should eliminate the first assignment to *p, but not the second. */ /* { dg-final { scan-tree-dump-times " = 3" 0 "dse1"} } */ /* { dg-final { scan-tree-dump-times " = 4" 1 "dse1"} } */ /* { dg-final { cleanup-tree-dump "dse1" } } */
Go to most recent revision | Compare with Previous | Blame | View Log