blob: f63d1149322bd13e2f8277d0f09a3e9c39d9ff6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O2" } */
extern inline float bar (float x)
{
register long double value;
asm volatile ("frndint" : "=t" (value) : "0" (x));
return value;
}
float a;
float foo (float b)
{
return a + bar (b);
}
|