URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [tree-ssa/] [pr38104.C] - Rev 478
Go to most recent revision | Compare with Previous | Blame | View Log
// PR tree-optimization/38104
// { dg-do compile }
// { dg-options "-O3" }
struct S { int foo; };
void f0 ();
void
f1 (struct S s)
{
f0 ();
}
void
f2 ()
{
f1 (*(struct S *) (0));
}
Go to most recent revision | Compare with Previous | Blame | View Log