From df479b6717e4300dfeb6cc51e6f6b68118fafdcd Mon Sep 17 00:00:00 2001 From: Edward O'Callaghan Date: Tue, 4 Aug 2009 03:30:10 +0000 Subject: Refactor out common pre-processor code. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@78037 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/int_lib.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/int_lib.h') diff --git a/lib/int_lib.h b/lib/int_lib.h index e8365506..3690d2eb 100644 --- a/lib/int_lib.h +++ b/lib/int_lib.h @@ -19,6 +19,11 @@ // Assumption: right shift of signed negative is arithmetic shift #include +#include + +#if !defined(INFINITY) && defined(HUGE_VAL) +#define INFINITY HUGE_VAL +#endif // TODO: Improve this to minimal pre-processor hackish'ness. #if defined (__SVR4) && defined (__sun) -- cgit v1.2.3