2004-06-23 01:54:38 +02:00
|
|
|
//===-- IsNAN.cpp ---------------------------------------------------------===//
|
2005-04-22 00:55:34 +02:00
|
|
|
//
|
2004-06-23 01:54:38 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 00:55:34 +02:00
|
|
|
//
|
2004-06-23 01:54:38 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2005-04-22 00:55:34 +02:00
|
|
|
// Platform-independent wrapper around C99 isnan().
|
2004-06-23 01:54:38 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/Config/config.h"
|
2006-07-26 18:18:00 +02:00
|
|
|
|
2004-06-23 01:54:38 +02:00
|
|
|
#if HAVE_ISNAN_IN_MATH_H
|
|
|
|
# include <math.h>
|
|
|
|
#elif HAVE_ISNAN_IN_CMATH
|
|
|
|
# include <cmath>
|
|
|
|
#elif HAVE_STD_ISNAN_IN_CMATH
|
|
|
|
# include <cmath>
|
|
|
|
using std::isnan;
|
2004-10-25 20:46:05 +02:00
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
#include <float.h>
|
|
|
|
#define isnan _isnan
|
2004-06-23 01:54:38 +02:00
|
|
|
#else
|
|
|
|
# error "Don't know how to get isnan()"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace llvm {
|
2006-08-12 01:52:54 +02:00
|
|
|
int IsNAN(float f) { return isnan(f); }
|
|
|
|
int IsNAN(double d) { return isnan(d); }
|
2006-05-24 19:04:05 +02:00
|
|
|
} // end namespace llvm;
|