Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / fold-isnan-1.c
blob05ee930f93b8549e64bca6653e372702680ecbbe
1 /* { dg-do compile } */
2 /* { dg-require-effective-target inf } */
3 /* { dg-options "-O2 -fdump-tree-optimized" } */
5 int foo(int x)
7 return __builtin_isnan((double)x);
10 int foof(int x)
12 return __builtin_isnanf((float)x);
15 int fool(int x)
17 return __builtin_isnanl((long double)x);
20 /* { dg-final { scan-tree-dump-times "_isnan" 0 "optimized" } } */
21 /* { dg-final { scan-tree-dump-times " unord " 0 "optimized" } } */