From 1fc65a65fe54635d0e564559ba5a7b8a8a42d4d6 Mon Sep 17 00:00:00 2001 From: dim Date: Mon, 11 Oct 2010 17:22:16 +0000 Subject: Remove more unneeded files and directories from contrib/llvm. This still allows us to build tblgen and clang, and further reduces the footprint in the tree. Approved by: rpaulo (mentor) --- contrib/llvm/tools/llvm-mc/Disassembler.h | 40 ------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 contrib/llvm/tools/llvm-mc/Disassembler.h (limited to 'contrib/llvm/tools/llvm-mc/Disassembler.h') 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 - -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 -- cgit v1.1