diff options
| author | Rui Ueyama <ruiu@google.com> | 2017-04-30 20:58:20 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2017-04-30 20:58:20 +0000 |
| commit | 378113790931513f11ef941b143370b4ea8c0370 (patch) | |
| tree | 59b394299125870ec348dc3ea5665ff27beb0936 /lld | |
| parent | 5a195f4fc5b44902e01bed24c487e283411b658e (diff) | |
| download | bcm5719-llvm-378113790931513f11ef941b143370b4ea8c0370.tar.gz bcm5719-llvm-378113790931513f11ef941b143370b4ea8c0370.zip | |
Fix comments.
llvm-svn: 301778
Diffstat (limited to 'lld')
| -rw-r--r-- | lld/COFF/MapFile.cpp | 12 | ||||
| -rw-r--r-- | lld/ELF/MapFile.cpp | 2 |
2 files changed, 6 insertions, 8 deletions
diff --git a/lld/COFF/MapFile.cpp b/lld/COFF/MapFile.cpp index 1db0bc44e1d..4e596e602fe 100644 --- a/lld/COFF/MapFile.cpp +++ b/lld/COFF/MapFile.cpp @@ -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) // //===----------------------------------------------------------------------===// diff --git a/lld/ELF/MapFile.cpp b/lld/ELF/MapFile.cpp index 7412359950d..af5bc3c2c81 100644 --- a/lld/ELF/MapFile.cpp +++ b/lld/ELF/MapFile.cpp @@ -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) // |

