blob: cd09bd17db5017315274bce7124003e9be0594a1 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -msse" } */
__float128 x, y;
__float128 test_1(void)
{
return -x;
}
__float128 test_2(void)
{
return __builtin_fabsq (x);
}
__float128 test_3(void)
{
return __builtin_copysignq (x, y);
}
/* { dg-final { scan-assembler-not "neg|fabs|copysign" } } */