summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/ssa-dce-6.c
blob: 06c7b42d1a9be09de9a9467830e2f5b2806c209b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { 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" } } */