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
Fix PR48484
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20090315_0.C
blob
930fb16e5cfcc77102e4279ae3fc565b648f9e90
1
// { dg-lto-do run }
2
struct Foo {
3
bool Mumble() { return true; }
4
static void Bar() { if (foo_->Mumble()) foo_ = 0; }
5
static void Baz() { Bar(); }
6
static Foo *foo_;
7
};
8
Foo *Foo::foo_;
9
main() { return 0; }