Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20081109-2_0.C
blob: dc43286bf3626a57287ff365521f270f1c24e085 [
file
] [
log
] [
blame
]
/* { dg-lto-do assemble } */
extern
void
func
(
int
);
struct
Foo
{
void
bar
()
{
static
int
local
;
func
(
local
);
}
void
baz
();
};
void
Foo
::
baz
()
{
bar
();
}