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 test-suite fallout of default -Wreturn-type.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ipa
/
pr55264.C
blob
cf54d6ae2a96523c7bfe2af2312709dfc72bcf9b
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-early-inlining -fno-weak" } */
3
4
struct S
5
{
6
S();
7
virtual inline void foo ()
8
{
9
foo();
10
}
11
};
12
13
void
14
B ()
15
{
16
S().foo ();
17
}