forked from OSchip/llvm-project
#if 0 out X86 disassembler for now, it is breaking the build in multiple places.
llvm-svn: 91778
This commit is contained in:
parent
8ac077df57
commit
4750efc28a
|
@ -14,6 +14,8 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#if 0
|
||||
|
||||
#include "X86Disassembler.h"
|
||||
#include "X86DisassemblerDecoder.h"
|
||||
#include "X86InstrInfo.h"
|
||||
|
@ -459,3 +461,8 @@ extern "C" void LLVMInitializeX86Disassembler() {
|
|||
TargetRegistry::RegisterMCDisassembler(TheX86_64Target,
|
||||
createX86_64Disassembler);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
extern "C" void LLVMInitializeX86Disassembler() {
|
||||
}
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
*
|
||||
*===----------------------------------------------------------------------===*/
|
||||
|
||||
#if 0
|
||||
|
||||
#include <assert.h> /* for assert() */
|
||||
#include <stdarg.h> /* for va_*() */
|
||||
#include <stdio.h> /* for vsnprintf() */
|
||||
|
@ -1359,3 +1361,7 @@ int decodeInstruction(struct InternalInstruction* insn,
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
int X86DissemblerDecoder_dummy = 0;
|
||||
|
|
Loading…
Reference in New Issue