repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
In gcc/objc/: 2010-11-13 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20081109-2_0.C
blob
dc43286bf3626a57287ff365521f270f1c24e085
1
/* { dg-lto-do assemble } */
2
extern void func(int);
3
4
struct Foo
5
{
6
void bar() {
7
static int local;
8
func(local);
9
}
10
void baz();
11
};
12
13
void Foo::baz() {
14
bar();
15
}