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

struct a
{
  union
  {
    int a;
    int b;
  };
  union
  {
    int c;
    int d;
  };
  int e;
};

int f(struct a *c)
{
  int d;
  c->e = 2;
  d = c->a;
  c->c = 1;
  return c->a + d;
}

/* We should have CSEd the load from c->a.  */

/* { dg-final { scan-tree-dump-times "c_.*\\\.a" 1 "fre1" } } */
/* { dg-final { cleanup-tree-dump "fre1" } } */