summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCDisassembler.h
diff options
context:
space:
mode:
authorRoman Divacky <rdivacky@freebsd.org>2012-12-19 19:55:47 +0000
committerRoman Divacky <rdivacky@freebsd.org>2012-12-19 19:55:47 +0000
commit759e3fa641d0ad01012d16d913015c9f69c8d2ab (patch)
tree3f3feb02acd10e3521ffc36e766cb3f58157ad71 /include/llvm/MC/MCDisassembler.h
parent6da2e22dffe9dd0255e10a8934f2879eb7e87868 (diff)
downloadllvm-759e3fa641d0ad01012d16d913015c9f69c8d2ab.tar.gz
llvm-759e3fa641d0ad01012d16d913015c9f69c8d2ab.tar.bz2
llvm-759e3fa641d0ad01012d16d913015c9f69c8d2ab.tar.xz
Remove edis - the enhanced disassembler. Fixes PR14654.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170578 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCDisassembler.h')
-rw-r--r--include/llvm/MC/MCDisassembler.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/llvm/MC/MCDisassembler.h b/include/llvm/MC/MCDisassembler.h
index 392d01592c..1b6beb279f 100644
--- a/include/llvm/MC/MCDisassembler.h
+++ b/include/llvm/MC/MCDisassembler.h
@@ -20,8 +20,6 @@ class MemoryObject;
class raw_ostream;
class MCContext;
-struct EDInstInfo;
-
/// MCDisassembler - Superclass for all disassemblers. Consumes a memory region
/// and provides an array of assembly instructions.
class MCDisassembler {
@@ -84,14 +82,6 @@ public:
raw_ostream &vStream,
raw_ostream &cStream) const = 0;
- /// getEDInfo - Returns the enhanced instruction information corresponding to
- /// the disassembler.
- ///
- /// @return - An array of instruction information, with one entry for
- /// each MCInst opcode this disassembler returns.
- /// NULL if there is no info for this target.
- virtual const EDInstInfo *getEDInfo() const { return (EDInstInfo*)0; }
-
private:
//
// Hooks for symbolic disassembly via the public 'C' interface.