llvm-objdump: Fix typo in output.
authorRui Ueyama <ruiu@google.com>
Tue, 4 Mar 2014 19:03:42 +0000 (19:03 +0000)
committerRui Ueyama <ruiu@google.com>
Tue, 4 Mar 2014 19:03:42 +0000 (19:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202875 91177308-0d34-0410-b5e6-96231b3b80d8

test/tools/llvm-objdump/win64-unwind-data.test
tools/llvm-objdump/COFFDump.cpp

index 104d959a2a24e0b2de658a3c25c35beef8c423a9..635e2d616d32a63585fd3c728cd1258d26d073d9 100644 (file)
@@ -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
index cfca40fd492ad3dd3bd6a29bcb32e63f03ac1e02..c703db6e2e291568ad402ff5238ad5485f7dcaf8 100644 (file)
@@ -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;