aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/pr93290.c
blob: fa35629d955b0cd58d241e8726612b689070d2b9 (plain)
1
2
3
4
5
6
7
8
9
#include <math.h>

int test_1 (void)
{
  float foo = 42.;
  if (isnan (foo))
    return 1;
  return 0;
}