aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/IsInf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Support/IsInf.cpp')
-rw-r--r--lib/Support/IsInf.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Support/IsInf.cpp b/lib/Support/IsInf.cpp
index 39c11cd..9b0556f 100644
--- a/lib/Support/IsInf.cpp
+++ b/lib/Support/IsInf.cpp
@@ -8,6 +8,7 @@
//===----------------------------------------------------------------------===//
#include "llvm/Config/config.h"
+#include "llvm/System/IncludeFile.h"
#if HAVE_ISINF_IN_MATH_H
# include <math.h>
@@ -43,3 +44,5 @@ int IsInf (float f) { return isinf (f); }
int IsInf (double d) { return isinf (d); }
} // end namespace llvm;
+
+DEFINING_FILE_FOR(SupportIsInf)