blob: 7be6fc3a0a65d0a240b2cb72d7d83539039fa7be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* { dg-do run } */
/* { dg-options "-O -fipa-cp -fno-early-inlining" } */
extern "C" void abort ();
struct A
{
virtual void foo () = 0;
};
struct B : A
{
virtual void foo () = 0;
};
struct C : A
{
};
struct D : C, B
{
int i;
D () : i(0xaaaa) {}
virtual void foo ()
{
if (i != 0xaaaa)
abort();
}
};
static inline void bar (B &b)
{
b.foo ();
}
int main()
{
D d;
bar (d);
return 0;
}
|