1 // PR 13764: We were inserting an extra body block in all functions, but
2 // it's only really necessary for [cd]tors.
3 // { dg-options "-fdump-tree-gimple" }
4
bar(void)5 void bar (void)
6 {
7 int a;
8 }
9
10 // { dg-final { scan-tree-dump-times "\{" 1 "gimple" } }
11