diff options
| author | Igor Kudrin <ikudrin@accesssoftek.com> | 2017-06-22 04:07:58 +0000 |
|---|---|---|
| committer | Igor Kudrin <ikudrin@accesssoftek.com> | 2017-06-22 04:07:58 +0000 |
| commit | 393563a0cec22965f3b410cedad3f3a68be0afc3 (patch) | |
| tree | 552d21924f7e87045c4f4d669d4effdfc44feabc | |
| parent | b7d716c06f15138dac800eaf0b76523d2acdc39c (diff) | |
| download | bcm5719-llvm-393563a0cec22965f3b410cedad3f3a68be0afc3.tar.gz bcm5719-llvm-393563a0cec22965f3b410cedad3f3a68be0afc3.zip | |
[ELF] Add an apostrophe after a file name when reporting discarded sections.
Differential Revision: https://reviews.llvm.org/D34442
llvm-svn: 305983
| -rw-r--r-- | lld/ELF/OutputSections.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/OutputSections.cpp b/lld/ELF/OutputSections.cpp index 6f04a04be8d..2fc201c5e8a 100644 --- a/lld/ELF/OutputSections.cpp +++ b/lld/ELF/OutputSections.cpp @@ -273,7 +273,7 @@ void elf::reportDiscarded(InputSectionBase *IS) { if (!Config->PrintGcSections) return; message("removing unused section from '" + IS->Name + "' in file '" + - IS->File->getName()); + IS->File->getName() + "'"); } void OutputSectionFactory::addInputSec(InputSectionBase *IS, |

