1 /* { dg-do compile } */
2 /* { dg-options "-O2 -mieee" } */
3 
4 double foo (void);
5 void bar (float, float);
6 
test(void)7 void test (void)
8 {
9   float f, g;
10 
11   f = foo();
12   g = foo();
13   asm ("");
14   bar (f, g);
15 }
16