aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/modref-12.c
blob: f8ce0470c4a88d40e5c5b5414f202c14835b4706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized"  } */
void foo ();
int
test()
{
  struct {int a,b;} a = {0,0};
  __attribute__ ((noinline))
  void nested ()
  {
	  a.b++;
  }
  nested ();
  return a.a;
}
/* { dg-final { scan-tree-dump "return 0" "optimized"} } */