I am compiling the following code with the -ffast-math
option:
#include <limits>
#include <cmath>
#include <iostream>
int main() {
std::cout << std::isnan(std::numeric_limits<double>::quiet_NaN() ) << std::endl;
}
I am getting 0 as output. How can my code tell whether a floating point number is NaN when it is compiled with -ffast-math
?
Note: On linux, std::isnan works even with -ffast-math.
Since
-ffast-math
instructs GCC not to handleNaN
s, it is expected thatisnan()
has an undefined behaviour. Returning0
is therefore valid.You can use the following fast replacement for
isnan()
: