1 /* PR tree-optimization/48063 */
2 /* { dg-do compile } */
3 /* { dg-options "-fno-early-inlining" } */
4 
5 extern void abort (void);
6 static void bar ();
7 
8 void
foo()9 foo ()
10 {
11   bar (1);
12 }
13 
14 static void
bar(double i)15 bar (double i)
16 {
17   if (i)
18     abort ();
19 }
20