mips.exp (setup_mips_tests): Set mips_abi to the default ABI.
[official-gcc.git] / gcc / testsuite / gcc.dg / 20051201-1.c
blobc13c10852774b588a1faca43d2513f2b3bbfbefa
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 ();
28 /* { dg-final { cleanup-coverage-files } } */