1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Fix this a 3rd time :)

llvm-svn: 22151
This commit is contained in:
Chris Lattner 2005-05-20 17:00:21 +00:00
parent 46b9d601f5
commit f1479ae390

View 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
}