build: Fix missing variable quotes
[official-gcc.git] / gcc / testsuite / gcc.dg / 20051201-1.c
blobc02920545759bf782f7ac1ef82d132b40878e789
1 /* This failed with profiling due to a missing check in
2 tree_flow_call_edges_add. */
4 /* { dg-do compile } */
5 /* { dg-require-profiling "-fprofile-generate" } */
6 /* { dg-options "-O1 -fprofile-generate -Wno-attributes" } */
8 static __attribute__ ((always_inline)) void
9 baz ()
13 static __attribute__ ((always_inline)) int
14 bar ()
16 out:
17 baz ();
18 goto out;
21 int
22 foo ()
24 long res;
26 res = bar ();