Deleted Added
sdiff udiff text old ( 212793 ) new ( 221337 )
full compact
1//===- Disassembler.h - Text File Disassembler ----------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 5 unchanged lines hidden (view full) ---

14
15#ifndef DISASSEMBLER_H
16#define DISASSEMBLER_H
17
18#include <string>
19
20namespace llvm {
21
22class Target;
23class MemoryBuffer;
24class raw_ostream;
25
26class Disassembler {
27public:
28 static int disassemble(const Target &target,
29 const std::string &tripleString,
30 MemoryBuffer &buffer,
31 raw_ostream &Out);
32
33 static int disassembleEnhanced(const std::string &tripleString,
34 MemoryBuffer &buffer,
35 raw_ostream &Out);
36};
37
38} // namespace llvm
39
40#endif