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 | 5d37a3abae69221f73d54db893923713684c2068 (patch) | |
| tree | 954991027ae8a2d66eaa3b81fcdd7a320ef0e028 /llvm/lib | |
| parent | 3a5eb6189910db85122de74a2c666230c71a1632 (diff) | |
| download | bcm5719-llvm-5d37a3abae69221f73d54db893923713684c2068.tar.gz bcm5719-llvm-5d37a3abae69221f73d54db893923713684c2068.zip | |
fix compilation error due to no abort being defined. There is probably a better way to do this
llvm-svn: 22150
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/X86/X86JITInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/X86JITInfo.cpp b/llvm/lib/Target/X86/X86JITInfo.cpp index 5c4e53257b7..176a0d1829f 100644 --- a/llvm/lib/Target/X86/X86JITInfo.cpp +++ b/llvm/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" |

