[lld] r301778 - Fix comments.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Sun Apr 30 13:58:21 PDT 2017
Author: ruiu
Date: Sun Apr 30 15:58:20 2017
New Revision: 301778
URL: http://llvm.org/viewvc/llvm-project?rev=301778&view=rev
Log:
Fix comments.
Modified:
lld/trunk/COFF/MapFile.cpp
lld/trunk/ELF/MapFile.cpp
Modified: lld/trunk/COFF/MapFile.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/COFF/MapFile.cpp?rev=301778&r1=301777&r2=301778&view=diff
==============================================================================
--- lld/trunk/COFF/MapFile.cpp (original)
+++ lld/trunk/COFF/MapFile.cpp Sun Apr 30 15:58:20 2017
@@ -11,13 +11,11 @@
// hierarchically the output sections, input sections, input files and
// symbol:
//
-// Address Size Align Out In File Symbol
-// =================================================================
-// 00201000 00000015 4 .text
-// 00201000 0000000e 4 .text
-// 00201000 0000000e 4 test.o
-// 0020100e 00000000 0 local
-// 00201005 00000000 0 f(int)
+// Address Size Align Out File Symbol
+// 00201000 00000015 4 .text
+// 00201000 0000000e 4 test.o:(.text)
+// 0020100e 00000000 0 local
+// 00201005 00000000 0 f(int)
//
//===----------------------------------------------------------------------===//
Modified: lld/trunk/ELF/MapFile.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/MapFile.cpp?rev=301778&r1=301777&r2=301778&view=diff
==============================================================================
--- lld/trunk/ELF/MapFile.cpp (original)
+++ lld/trunk/ELF/MapFile.cpp Sun Apr 30 15:58:20 2017
@@ -13,7 +13,7 @@
//
// Address Size Align Out In Symbol
// 00201000 00000015 4 .text
-// 00201000 0000000e 4 test.o:.text
+// 00201000 0000000e 4 test.o:(.text)
// 0020100e 00000000 0 local
// 00201005 00000000 0 f(int)
//
More information about the llvm-commits
mailing list