mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-12 14:06:36 +00:00
llvm-objdump: Fix typo in output.
llvm-svn: 202875
This commit is contained in:
parent
0bbbc6a1b7
commit
aa63643778
@ -57,7 +57,7 @@ OBJ-NEXT: 0x00: UOP_PushMachFrame w/o error code
|
||||
EXE: Function Table:
|
||||
EXE: Start Address: 0x1000
|
||||
EXE: End Address: 0x101b
|
||||
EXE: Unwind Info Address: : 0x2000
|
||||
EXE: Unwind Info Address: 0x2000
|
||||
EXE: Version: 1
|
||||
EXE: Flags: 1 UNW_ExceptionHandler
|
||||
EXE: Size of prolog: 18
|
||||
@ -75,7 +75,7 @@ EXE: 0x00: UOP_PushMachFrame w/o error code
|
||||
EXE: Function Table:
|
||||
EXE: Start Address: 0x1012
|
||||
EXE: End Address: 0x1012
|
||||
EXE: Unwind Info Address: : 0x201c
|
||||
EXE: Unwind Info Address: 0x201c
|
||||
EXE: Version: 1
|
||||
EXE: Flags: 4 UNW_ChainInfo
|
||||
EXE: Size of prolog: 0
|
||||
@ -85,7 +85,7 @@ EXE: No frame pointer used
|
||||
EXE: Function Table:
|
||||
EXE: Start Address: 0x101b
|
||||
EXE: End Address: 0x101c
|
||||
EXE: Unwind Info Address: : 0x202c
|
||||
EXE: Unwind Info Address: 0x202c
|
||||
EXE: Version: 1
|
||||
EXE: Flags: 0
|
||||
EXE: Size of prolog: 0
|
||||
@ -95,7 +95,7 @@ EXE: No frame pointer used
|
||||
EXE: Function Table:
|
||||
EXE: Start Address: 0x101c
|
||||
EXE: End Address: 0x1039
|
||||
EXE: Unwind Info Address: : 0x2034
|
||||
EXE: Unwind Info Address: 0x2034
|
||||
EXE: Version: 1
|
||||
EXE: Flags: 0
|
||||
EXE: Size of prolog: 14
|
||||
|
@ -460,7 +460,7 @@ static void printRuntimeFunction(const COFFObjectFile *Obj,
|
||||
outs() << "Function Table:\n"
|
||||
<< format(" Start Address: 0x%04x\n", RF.StartAddress)
|
||||
<< format(" End Address: 0x%04x\n", RF.EndAddress)
|
||||
<< format(" Unwind Info Address: : 0x%04x\n\n", RF.UnwindInfoOffset);
|
||||
<< format(" Unwind Info Address: 0x%04x\n\n", RF.UnwindInfoOffset);
|
||||
uintptr_t addr;
|
||||
if (Obj->getRvaPtr(RF.UnwindInfoOffset, addr))
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user