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