diff --git a/test/tools/llvm-objdump/win64-unwind-data.test b/test/tools/llvm-objdump/win64-unwind-data.test
index 104d959a2a2..635e2d616d3 100644
--- a/test/tools/llvm-objdump/win64-unwind-data.test
+++ b/test/tools/llvm-objdump/win64-unwind-data.test
@@ -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
diff --git a/tools/llvm-objdump/COFFDump.cpp b/tools/llvm-objdump/COFFDump.cpp
index cfca40fd492..c703db6e2e2 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;