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
Be careful about comdat boundary in ICF (PR ipa/82352).
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
init
/
ref2.C
blob
231ea047fff0f84b3e5c002e70a75e6a368dd2bc
1
struct Base {
2
Base();
3
Base(const Base &);
4
Base & operator = (const Base &);
5
};
6
7
struct Derived : public Base {};
8
9
Derived derived();
10
const Base &b = derived();