summaryrefslogtreecommitdiff
path: root/tools/llvm-objdump
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2014-03-04 19:03:42 +0000
committerRui Ueyama <ruiu@google.com>2014-03-04 19:03:42 +0000
commit1d8f5519463f16915048501bc464e93a076da3a9 (patch)
treeffadd006f1ee58c6116f1f611cdbbc351652ed9a /tools/llvm-objdump
parenta9a43d01f29236b3427d94e55c65324626e46417 (diff)
downloadllvm-1d8f5519463f16915048501bc464e93a076da3a9.tar.gz
llvm-1d8f5519463f16915048501bc464e93a076da3a9.tar.bz2
llvm-1d8f5519463f16915048501bc464e93a076da3a9.tar.xz
llvm-objdump: Fix typo in output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202875 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-objdump')
-rw-r--r--tools/llvm-objdump/COFFDump.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-objdump/COFFDump.cpp b/tools/llvm-objdump/COFFDump.cpp
index cfca40fd49..c703db6e2e 100644
--- a/tools/llvm-objdump/COFFDump.cpp
+++ b/tools/llvm-objdump/COFFDump.cpp
@@ -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;