diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2005-05-20 16:34:44 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-05-20 16:34:44 +0000 |
commit | 75a51277d2b5fb4b81d3295c251e78aa96b48bf9 (patch) | |
tree | 5d4e81f0c2fb8db7bf3c5a8e97996a76eaa0b62b | |
parent | 04aa46d6473f9d6d52be5e23a976573cd9742f1c (diff) |
fix compilation error due to no abort being defined. There is probably a better way to do this
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22150 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86JITInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/X86/X86JITInfo.cpp b/lib/Target/X86/X86JITInfo.cpp index 5c4e53257b..176a0d1829 100644 --- a/lib/Target/X86/X86JITInfo.cpp +++ b/lib/Target/X86/X86JITInfo.cpp @@ -12,6 +12,7 @@ //===----------------------------------------------------------------------===// #define DEBUG_TYPE "jit" +#include <stdlib.h> #include "X86JITInfo.h" #include "X86Relocations.h" #include "llvm/CodeGen/MachineCodeEmitter.h" |