operator== returns false when two bitvectors have different sizes.
[oota-llvm.git] / include / llvm / System / Disassembler.h
1 //===- llvm/Support/Disassembler.h ------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Anton Korobeynikov and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the necessary glue to call external disassembler
11 // libraries.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_SYSTEM_DISASSEMBLER_H
16 #define LLVM_SYSTEM_DISASSEMBLER_H
17
18 #include "llvm/Support/DataTypes.h"
19 #include <string>
20
21 namespace llvm {
22 namespace sys {
23
24 /// This function provides some "glue" code to call external disassembler
25 /// libraries.
26 std::string disassembleBuffer(uint8_t* start, size_t length, uint64_t pc = 0);
27
28 }
29 }
30
31 #endif // LLVM_SYSTEM_DISASSEMBLER_H