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
testsuite: i386: adapt to -std=gnu23 default change
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ipa
/
pr59355.C
blob
907c6d74501b609cb512ce3365e55be963ca7a8e
1
// PR tree-optimization/59355
2
// { dg-do compile }
3
// { dg-options "-O2 -fno-devirtualize" }
4
5
struct S
6
{
7
virtual void bar ();
8
};
9
10
void
11
foo (S *s)
12
{
13
s->bar ();
14
}