PR testsuite/52641
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-18.c
blob986fe0781ae754a33940017d4cdd82d50d1beed5
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-fre1" } */
4 struct a
6 union
8 int a;
9 int b;
11 union
13 int c;
14 int d;
18 int f(struct a *c)
20 int d = c->a;
21 c->c = 1;
22 return c->a + d;
25 /* We should have CSEd the load from c->a. */
27 /* { dg-final { scan-tree-dump-times "c_.*\\\.a" 1 "fre1" } } */
28 /* { dg-final { cleanup-tree-dump "fre1" } } */