mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-04 02:24:29 +00:00
Remove edis - the enhanced disassembler. Fixes PR14654.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170578 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -14,7 +14,6 @@
|
||||
#include "Mips.h"
|
||||
#include "MipsRegisterInfo.h"
|
||||
#include "MipsSubtarget.h"
|
||||
#include "llvm/MC/EDInstInfo.h"
|
||||
#include "llvm/MC/MCDisassembler.h"
|
||||
#include "llvm/MC/MCFixedLenDisassembler.h"
|
||||
#include "llvm/MC/MCInst.h"
|
||||
@ -23,9 +22,6 @@
|
||||
#include "llvm/Support/MemoryObject.h"
|
||||
#include "llvm/Support/TargetRegistry.h"
|
||||
|
||||
// Not a normal header, this must come last.
|
||||
#include "MipsGenEDInfo.inc"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
typedef MCDisassembler::DecodeStatus DecodeStatus;
|
||||
@ -43,9 +39,6 @@ public:
|
||||
|
||||
virtual ~MipsDisassemblerBase() {}
|
||||
|
||||
/// getEDInfo - See MCDisassembler.
|
||||
const EDInstInfo *getEDInfo() const;
|
||||
|
||||
const MCRegisterInfo *getRegInfo() const { return RegInfo; }
|
||||
|
||||
private:
|
||||
@ -93,10 +86,6 @@ public:
|
||||
|
||||
} // end anonymous namespace
|
||||
|
||||
const EDInstInfo *MipsDisassemblerBase::getEDInfo() const {
|
||||
return instInfoMips;
|
||||
}
|
||||
|
||||
// Forward declare these because the autogenerated code will reference them.
|
||||
// Definitions are further down.
|
||||
static DecodeStatus DecodeCPU64RegsRegisterClass(MCInst &Inst,
|
||||
|
Reference in New Issue
Block a user