Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / 20051201-1.c
blob8e77986296e1371c7365f5b8ade1e65fc12add2b
1 /* This failed with profiling due to a missing check in
2 tree_flow_call_edges_add. */
4 /* { dg-do compile } */
5 /* { dg-options "-O1 -fprofile-generate" } */
7 static __attribute__ ((always_inline)) void
8 baz ()
12 static __attribute__ ((always_inline)) int
13 bar ()
15 out:
16 baz ();
17 goto out;
20 int
21 foo ()
23 long res;
25 res = bar ();