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