aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/ssa-dce-6.c
blob: 30a06a102560c4564c9922ec45c0be9e479a3b0d (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
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-cddce1" } */

struct object { int field; };
void o(struct object *);
int globl;
void t(int x)
{
  struct object a, b;
  struct object *p;
  o(&a);
  if (x)
    p = &a;
  else
    p = &b;
  p->field = 1;
  globl = 0;
  return;
}

/* The global store should not prevent deleting the store to p->field.  */

/* { dg-final { scan-tree-dump-not "p_.->field" "cddce1" } } */
/* { dg-final { cleanup-tree-dump "cddce1" } } */