From: Andrew Lenharth Date: Fri, 20 May 2005 16:34:44 +0000 (+0000) Subject: fix compilation error due to no abort being defined. There is probably a better... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=75a51277d2b5fb4b81d3295c251e78aa96b48bf9;p=oota-llvm.git 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 --- diff --git a/lib/Target/X86/X86JITInfo.cpp b/lib/Target/X86/X86JITInfo.cpp index 5c4e53257b7..176a0d1829f 100644 --- a/lib/Target/X86/X86JITInfo.cpp +++ b/lib/Target/X86/X86JITInfo.cpp @@ -12,6 +12,7 @@ //===----------------------------------------------------------------------===// #define DEBUG_TYPE "jit" +#include #include "X86JITInfo.h" #include "X86Relocations.h" #include "llvm/CodeGen/MachineCodeEmitter.h"