aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/fold-isnan-1.c
blob: 05ee930f93b8549e64bca6653e372702680ecbbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-require-effective-target inf } */
/* { dg-options "-O2 -fdump-tree-optimized" } */

int foo(int x)
{
  return __builtin_isnan((double)x);
}

int foof(int x)
{
  return __builtin_isnanf((float)x);
}

int fool(int x)
{
  return __builtin_isnanl((long double)x);
}

/* { dg-final { scan-tree-dump-times "_isnan" 0 "optimized" } } */
/* { dg-final { scan-tree-dump-times " unord " 0 "optimized" } } */