view gcc/testsuite/gcc.dg/tree-ssa/ssa-dce-6.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { 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" } } */