#if 0 out X86 disassembler for now, it is breaking the build in multiple places.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91778 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2009-12-19 17:11:53 +00:00
parent bcfd12a234
commit c814346c9d
2 changed files with 13 additions and 0 deletions

View File

@ -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() {
}

View File

@ -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;