diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-20 17:00:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-20 17:00:21 +0000 |
commit | 170fbcbc635f95b551d71c0e30214bf667d70cc2 (patch) | |
tree | ec1da08066b119d26d67a93d721348e2ae74dcf1 | |
parent | 75a51277d2b5fb4b81d3295c251e78aa96b48bf9 (diff) |
Fix this a 3rd time :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22151 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86JITInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/X86/X86JITInfo.cpp b/lib/Target/X86/X86JITInfo.cpp index 176a0d1829..77bf053694 100644 --- a/lib/Target/X86/X86JITInfo.cpp +++ b/lib/Target/X86/X86JITInfo.cpp @@ -12,7 +12,7 @@ //===----------------------------------------------------------------------===// #define DEBUG_TYPE "jit" -#include <stdlib.h> +#include <cstdlib> #include "X86JITInfo.h" #include "X86Relocations.h" #include "llvm/CodeGen/MachineCodeEmitter.h" @@ -75,6 +75,7 @@ extern "C" { // Not an i386 host void X86CompilationCallback() { assert(0 && "This is not a X86, you can't execute this!"); + abort(); } #endif } |