1 /* PR tree-optimization/47967 */
2 
3 extern void abort (void);
4 static void bar ();
5 
6 void
foo()7 foo ()
8 {
9   bar (1);
10 }
11 
12 static void
bar(double i)13 bar (double i)
14 {
15   if (i)
16     abort ();
17 }
18