aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/sra-9.c
blob: 54f42179e683ea7aadc23d29b57fe4863d9efee7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { 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"} } */
/* { dg-final { cleanup-tree-dump "optimized" } } */