llvm-objdump: Fix typo in output.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202875 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rui Ueyama
2014-03-04 19:03:42 +00:00
parent a9a43d01f2
commit 1d8f551946
2 changed files with 5 additions and 5 deletions

View 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;