2004-10-29 23:17:45 +00:00
|
|
|
//===-- IsInf.cpp - Platform-independent wrapper around C99 isinf() -------===//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-07-21 03:13:50 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-07-21 03:13:50 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2006-08-11 23:52:54 +00:00
|
|
|
//
|
|
|
|
// Platform-independent wrapper around C99 isinf()
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2004-07-21 03:13:50 +00:00
|
|
|
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2004-10-29 23:17:45 +00:00
|
|
|
|
2004-07-21 03:13:50 +00:00
|
|
|
#if HAVE_ISINF_IN_MATH_H
|
|
|
|
# include <math.h>
|
|
|
|
#elif HAVE_ISINF_IN_CMATH
|
|
|
|
# include <cmath>
|
|
|
|
#elif HAVE_STD_ISINF_IN_CMATH
|
|
|
|
# include <cmath>
|
|
|
|
using std::isinf;
|
2004-07-21 03:32:51 +00:00
|
|
|
#elif HAVE_FINITE_IN_IEEEFP_H
|
|
|
|
// A handy workaround I found at http://www.unixguide.net/sun/faq ...
|
|
|
|
// apparently this has been a problem with Solaris for years.
|
|
|
|
# include <ieeefp.h>
|
|
|
|
static int isinf(double x) { return !finite(x) && x==x; }
|
2004-10-25 18:47:10 +00:00
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
#include <float.h>
|
|
|
|
#define isinf(X) (!_finite(X))
|
2004-10-29 23:17:45 +00:00
|
|
|
#elif defined(_AIX) && defined(__GNUC__)
|
|
|
|
// GCC's fixincludes seems to be removing the isinf() declaration from the
|
2005-04-21 22:55:34 +00:00
|
|
|
// system header /usr/include/math.h
|
2004-10-29 23:17:45 +00:00
|
|
|
# include <math.h>
|
|
|
|
static int isinf(double x) { return !finite(x) && x==x; }
|
2005-05-16 06:45:57 +00:00
|
|
|
#elif defined(__hpux)
|
|
|
|
// HP-UX is "special"
|
|
|
|
#include <math.h>
|
2006-08-11 23:52:54 +00:00
|
|
|
static int isinf(double x) { return ((x) == INFINITY) || ((x) == -INFINITY); }
|
2004-07-21 03:13:50 +00:00
|
|
|
#else
|
|
|
|
# error "Don't know how to get isinf()"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2006-08-11 23:52:54 +00:00
|
|
|
int IsInf(float f) { return isinf(f); }
|
|
|
|
int IsInf(double d) { return isinf(d); }
|
2004-07-21 03:13:50 +00:00
|
|
|
|
2006-05-24 17:04:05 +00:00
|
|
|
} // end namespace llvm;
|