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-ccp-17.c] - Rev 826
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O -fdump-tree-ccp1" } */ int foo(void) { int i = 0; char *p = (char *)&i; return *(int *)p; } struct Foo { int i; } f; int bar(void) { char *p = (char *)&f; return ((struct Foo *)p)->i; } const struct Foo g; int foobar(void) { struct Foo *p = (struct Foo *)&g; return ((const struct Foo *)p)->i; } /* { dg-final { scan-tree-dump "= i;" "ccp1" } } */ /* { dg-final { scan-tree-dump "= f.i;" "ccp1" } } */ /* { dg-final { scan-tree-dump "= g.i;" "ccp1" } } */ /* { dg-final { cleanup-tree-dump "ccp1" } } */