Fix this a 3rd time :)
authorChris Lattner <sabre@nondot.org>
Fri, 20 May 2005 17:00:21 +0000 (17:00 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 20 May 2005 17:00:21 +0000 (17:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22151 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86JITInfo.cpp

index 176a0d1829f5424560978c016946b9da3949ca9e..77bf053694779c27e819fc4b89a0a89e5ee205a5 100644 (file)
@@ -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
 }