diff options
Diffstat (limited to 'contrib/llvm/tools/llvm-mc/Disassembler.h')
-rw-r--r-- | contrib/llvm/tools/llvm-mc/Disassembler.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/contrib/llvm/tools/llvm-mc/Disassembler.h b/contrib/llvm/tools/llvm-mc/Disassembler.h deleted file mode 100644 index b56f2e9..0000000 --- a/contrib/llvm/tools/llvm-mc/Disassembler.h +++ /dev/null @@ -1,40 +0,0 @@ -//===- Disassembler.h - Text File Disassembler ----------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This class implements the disassembler of strings of bytes written in -// hexadecimal, from standard input or from a file. -// -//===----------------------------------------------------------------------===// - -#ifndef DISASSEMBLER_H -#define DISASSEMBLER_H - -#include <string> - -namespace llvm { - -class Target; -class MemoryBuffer; -class raw_ostream; - -class Disassembler { -public: - static int disassemble(const Target &target, - const std::string &tripleString, - MemoryBuffer &buffer, - raw_ostream &Out); - - static int disassembleEnhanced(const std::string &tripleString, - MemoryBuffer &buffer, - raw_ostream &Out); -}; - -} // namespace llvm - -#endif |