[ARM] Fix PR85203: cmse_nonsecure_caller returns wrong result
[official-gcc.git] / gcc / testsuite / gcc.target / alpha / 20011018-1.c
blobe01fcf5c4ad92a11438d3a8bbf41fd327a1a5a4d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -mieee" } */
4 double foo (void);
5 void bar (float, float);
7 void test (void)
9 float f, g;
11 f = foo();
12 g = foo();
13 asm ("");
14 bar (f, g);