aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/ssa-fre-21.c
blob: 219c0a926a63c65657e8f40db57552905977a0ea (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
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-fre1" } */

struct f {
  float a;
  float b;
  float c;
  float d;
};

struct f a;

void h(float, float, float, float);

void g(void)
{
  float a1 = a.a, b = a.b, c = a.c, d = a.d;
  a.a = a1;
  a.b = b;
  a.c = c;
  a.d = d;
  h(a1, b, c, d);
}

/* { dg-final { scan-tree-dump-not "a\\\.? = " "fre1" } } */
/* { dg-final { cleanup-tree-dump "fre1" } } */