blob: 91f21a8c643ef1e0c813fe94eaac23964a685cb5 (
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
|
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-fre-details" } */
struct Foo {
Foo() {};
int i;
short f;
};
struct Bar : public Foo {
Bar() {};
short b;
};
extern "C" void abort(void);
int main()
{
Bar b1, b2;
b2.i = 0;
b1.f = 0;
b1.b = 1;
b2.f = 1;
b2.b = 2;
static_cast<Foo&>(b1) = static_cast<Foo&>(b2);
if (b1.i != 0 || b1.b != 1)
abort ();
if (b1.f != 1)
abort ();
return 0;
}
/* { dg-final { scan-tree-dump "Replaced b1.b with 1" "fre" } } */
/* { dg-final { scan-tree-dump "Replaced b1.i with 0" "fre" { xfail *-*-* } } } */
/* { dg-final { scan-tree-dump "Replaced b1.f with 1" "fre" { xfail *-*-* } } } */
/* { dg-final { cleanup-tree-dump "fre" } } */
|