mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Fixed a bug in llvm-objdump when disassembling using -macho option for a binary
that has more than one symbol. The last symbol was not being disassembled to the end of the section. llvm-svn: 156840
This commit is contained in:
parent
64c706d674
commit
a1272a1de8
@ -430,7 +430,7 @@ void llvm::DisassembleInputMachO(StringRef Filename) {
|
||||
|
||||
// Stop disassembling either at the beginning of the next symbol or at
|
||||
// the end of the section.
|
||||
bool containsNextSym = true;
|
||||
bool containsNextSym = false;
|
||||
uint64_t NextSym = 0;
|
||||
uint64_t NextSymIdx = SymIdx+1;
|
||||
while (Symbols.size() > NextSymIdx) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user