summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Kudrin <ikudrin@accesssoftek.com>2017-06-22 04:07:58 +0000
committerIgor Kudrin <ikudrin@accesssoftek.com>2017-06-22 04:07:58 +0000
commit393563a0cec22965f3b410cedad3f3a68be0afc3 (patch)
tree552d21924f7e87045c4f4d669d4effdfc44feabc
parentb7d716c06f15138dac800eaf0b76523d2acdc39c (diff)
downloadbcm5719-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.cpp2
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,
OpenPOWER on IntegriCloud