2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / 20001127-1.c
blob6ac76e29e92818ce460003e527e99d93295628eb
1 /* { dg-do compile { target i?86-*-* } } */
2 /* { dg-options "-O2" } */
4 extern inline float bar (float x)
6 register long double value;
7 asm volatile ("frndint" : "=t" (value) : "0" (x));
8 return value;
11 float a;
13 float foo (float b)
15 return a + bar (b);