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
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
abi
/
local1.C
blob
518193c8980998a5f2db856bf4499a31a601534b
1
// { dg-do run }
2
// { dg-additional-sources "local1-a.cc" }
3
4
#include <typeinfo>
5
6
struct B {
7
virtual void b() {}
8
};
9
10
static B* f() {
11
struct D : public B {
12
};
13
14
return new D;
15
}
16
17
extern B* g();
18
19
int main () {
20
if (typeid (*f()) == typeid (*g()))
21
return 1;
22
}