aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/struct-aliasing-2.c
blob: c348bdfe25b26b2d82761bc3a0700a20135f57e2 (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-fre1" } */

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 fwprop can change
   *(int *)&p->f into just (int)p->f.  */
/* { dg-final { scan-tree-dump-times "= \[^\n\]*p_.\\\(D\\\)" 1 "fre1" } } */
/* { dg-final { cleanup-tree-dump "fre1" } } */