summaryrefslogtreecommitdiffstats
path: root/lld/ELF/ICF.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lld/ELF/ICF.cpp')
-rw-r--r--lld/ELF/ICF.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/ICF.cpp b/lld/ELF/ICF.cpp
index a16b647fbef..7392e7296c9 100644
--- a/lld/ELF/ICF.cpp
+++ b/lld/ELF/ICF.cpp
@@ -340,10 +340,10 @@ template <class ELFT> void ICF<ELFT>::run(SymbolTable<ELFT> *Symtab) {
});
if (I == Bound)
continue;
- log("Selected " + Head->getSectionName());
+ log("selected " + Head->getSectionName());
while (I != Bound) {
InputSection<ELFT> *S = *I++;
- log(" Removed " + S->getSectionName());
+ log(" removed " + S->getSectionName());
Head->replace(S);
}
}
OpenPOWER on IntegriCloud