view gcc/testsuite/gcc.dg/tree-ssa/sra-9.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 "-O1 -fdump-tree-optimized" } */

struct S
{
  int a, b, c;
  int z[20];
};

int foo (int d)
{
  struct S s;

  s.a = d;
  return s.a + s.b;
}

/* There should be no reference to s.b.  */
/* { dg-final { scan-tree-dump-times "= s\.b" 0 "optimized"} } */