For PR780:
[oota-llvm.git] / lib / Support / IsNAN.cpp
index 2ed2b284c7d19623f6a8fb31a170d40d6d37438c..5ed3971254bb374e7f9ef4152c8b94a810c7e326 100644 (file)
@@ -12,6 +12,8 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/Config/config.h"
+#include "llvm/System/IncludeFile.h"
+
 #if HAVE_ISNAN_IN_MATH_H
 # include <math.h>
 #elif HAVE_ISNAN_IN_CMATH
@@ -32,3 +34,5 @@ int IsNAN (float f)  { return isnan (f); }
 int IsNAN (double d) { return isnan (d); }
 
 } // end namespace llvm;
+
+DEFINING_FILE_FOR(SupportIsNAN)