blob: 5bf031906c7e1c221c244611905d10188a7d0646 (
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
42
43
44
45
46
47
48
49
50
51
52
53
|
// { dg-lto-do assemble }
extern void some_function (const char *);
extern bool some_other_function ();
struct Foo
{
long long a;
int b;
};
bool Foo_eq(Foo x, Foo y)
{
return x.a == y.a && x.b == y.b;
}
struct Bar
{
Foo a;
int b;
};
struct Baz
{
Bar a;
Baz(Bar &a):a(a) { }
};
struct Zonk
{
Baz baz;
Bar func_1(const Bar & bar) {
if (Foo_eq(bar.a, baz.a.a) && bar.b == baz.a.b || some_other_function ())
return bar;
}
void func_2(const Baz & baz) {
func_1(baz.a);
some_function(__PRETTY_FUNCTION__);
}
};
void func() {
Bar bar;
Zonk *rep;
rep->func_1(bar);
rep->func_2(Baz(bar));
}
void foo ()
{
func();
}
|