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
54
55
56
57
58
59
60
61
|
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-fre1" } */
struct A { float x, y; };
struct B { struct A u; };
void bar (struct A *);
float
f1 (struct B *x, int y)
{
struct A p;
p.x = 1.0f;
p.y = 2.0f;
struct A *q = &x[y].u;
*q = p;
float f = x[y].u.x + x[y].u.y;
bar (&p);
return f;
}
float
f2 (struct B *x, int y)
{
struct A p;
p.x = 1.0f;
p.y = 2.0f;
x[y].u = p;
float f = x[y].u.x + x[y].u.y;
bar (&p);
return f;
}
float
f3 (struct B *x, int y)
{
struct A p;
p.x = 1.0f;
p.y = 2.0f;
struct A *q = &x[y].u;
__builtin_memcpy (&q->x, &p.x, sizeof (float));
__builtin_memcpy (&q->y, &p.y, sizeof (float));
float f = x[y].u.x + x[y].u.y;
bar (&p);
return f;
}
float
f4 (struct B *x, int y)
{
struct A p;
p.x = 1.0f;
p.y = 2.0f;
__builtin_memcpy (&x[y].u.x, &p.x, sizeof (float));
__builtin_memcpy (&x[y].u.y, &p.y, sizeof (float));
float f = x[y].u.x + x[y].u.y;
bar (&p);
return f;
}
/* { dg-final { scan-tree-dump-times "return 3.0" 4 "fre1" } } */
/* { dg-final { cleanup-tree-dump "fre1" } } */
|