summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/struct-aliasing-2.c
blob: 66a5442a9effcad5ebfaa5e8a3f06fa7ebfd456d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-cddce1" } */

struct S { unsigned f; };

int
foo ( struct S *p)
{
  int *q = (int *)&p->f;
  int i = *q;
  return i + p->f;
}


/* There should only be one load of p->f because FRE removes the redundancy
   by realizing it can cast the result of either to the other.  */
/* { dg-final { scan-tree-dump-times "= \[^\n\]*p_.\\\(D\\\)" 1 "cddce1" } } */
/* { dg-final { cleanup-tree-dump "cddce1" } } */