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++.old-deja
/
g++.warn
/
virt1.C
blob
4550dd5e0547901eb25cf66ca54970dfd0c23201
1
// { dg-do assemble }
2
// { dg-options "-Woverloaded-virtual" }
3
4
struct A {
5
virtual void f(); // { dg-warning "" } hidden
6
};
7
8
struct B: public A {
9
void f(int); // { dg-warning "" } by this
10
};