OSDN Git Service

* gcc.dg/tree-ssa/fre-vce-1.c: Cleanup "fre" tree dump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20051201-1.c
1 /* This failed with profiling due to a missing check in
2    tree_flow_call_edges_add.  */
3
4 /* { dg-do compile } */
5 /* { dg-options "-O1 -fprofile-generate" } */
6
7 static __attribute__ ((always_inline)) void 
8 baz ()
9 {
10 }
11
12 static __attribute__ ((always_inline)) int
13 bar ()
14 {
15  out:
16   baz ();
17   goto out;
18 }
19
20 int
21 foo ()
22 {
23   long res;
24   
25   res = bar ();
26 }
27
28 /* { dg-final { cleanup-coverage-files } } */