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

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

int f(struct a *c)
{
  int 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" } } */