forked from OSchip/llvm-project
[llvm-objdump] Fix Bugzilla ID 41862 to support checking addresses of disassembled object
Summary: This fixes the bugzilla id,41862 to support dealing with checking stop address against start address to support this not being a proper object to check the disasembly against like gnu objdump currently does. Reviewers: jakehehrlich, rupprecht, echristo, jhenderson, grimar Reviewed By: jhenderson Subscribers: MaskRay, smeenai, rupprecht, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D61969 Patch by Nicholas Krause! llvm-svn: 362847
This commit is contained in:
parent
4ca8435528
commit
7dd813fea1
|
@ -68,4 +68,5 @@
|
|||
// OUT-OF-RANGE-NOT: Disassembly
|
||||
|
||||
// RUN: not llvm-objdump -d %t.out --start-address=0x40 --stop-address=0x3f 2>&1 | FileCheck %s --check-prefix ERRMSG
|
||||
// ERRMSG: error: Start address should be less than stop address.
|
||||
// RUN: not llvm-objdump -d %t.out --start-address=0x40 --stop-address=0x40 2>&1 | FileCheck %s --check-prefix ERRMSG
|
||||
// ERRMSG: start address should be less than stop address.
|
||||
|
|
|
@ -1417,8 +1417,8 @@ static void disassembleObject(const Target *TheTarget, const ObjectFile *Obj,
|
|||
}
|
||||
|
||||
static void disassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
|
||||
if (StartAddress > StopAddress)
|
||||
error("Start address should be less than stop address");
|
||||
if (StartAddress >= StopAddress)
|
||||
error("start address should be less than stop address");
|
||||
|
||||
const Target *TheTarget = getTarget(Obj);
|
||||
|
||||
|
|
Loading…
Reference in New Issue