forked from OSchip/llvm-project
[X86] Include X86MCTargetDesc.h directly in X86Disassembler.cpp instead of duplicating parts of it. NFC
llvm-svn: 267984
This commit is contained in:
parent
cc06271d12
commit
e7c1cd18d3
|
@ -16,6 +16,7 @@
|
|||
|
||||
#include "X86Disassembler.h"
|
||||
#include "X86DisassemblerDecoder.h"
|
||||
#include "MCTargetDesc/X86MCTargetDesc.h"
|
||||
#include "llvm/MC/MCContext.h"
|
||||
#include "llvm/MC/MCDisassembler/MCDisassembler.h"
|
||||
#include "llvm/MC/MCExpr.h"
|
||||
|
@ -31,13 +32,6 @@ using namespace llvm::X86Disassembler;
|
|||
|
||||
#define DEBUG_TYPE "x86-disassembler"
|
||||
|
||||
#define GET_REGINFO_ENUM
|
||||
#include "X86GenRegisterInfo.inc"
|
||||
#define GET_INSTRINFO_ENUM
|
||||
#include "X86GenInstrInfo.inc"
|
||||
#define GET_SUBTARGETINFO_ENUM
|
||||
#include "X86GenSubtargetInfo.inc"
|
||||
|
||||
void llvm::X86Disassembler::Debug(const char *file, unsigned line,
|
||||
const char *s) {
|
||||
dbgs() << file << ":" << line << ": " << s;
|
||||
|
@ -67,8 +61,6 @@ namespace X86 {
|
|||
};
|
||||
}
|
||||
|
||||
extern Target TheX86_32Target, TheX86_64Target;
|
||||
|
||||
}
|
||||
|
||||
static bool translateInstruction(MCInst &target,
|
||||
|
|
Loading…
Reference in New Issue