URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lto/] [20081109-2_0.C] - Rev 751
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-lto-do assemble } */
extern void func(int);
struct Foo
{
void bar() {
static int local;
func(local);
}
void baz();
};
void Foo::baz() {
bar();
}
Go to most recent revision | Compare with Previous | Blame | View Log