summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGalina Kistanova <gkistanova@gmail.com>2018-02-11 02:32:21 +0000
committerGalina Kistanova <gkistanova@gmail.com>2018-02-11 02:32:21 +0000
commitc6cd1f01395ef45e0e618a9c26d1365eec582455 (patch)
treec02f67e4aa7aad969a0163a4780428a49edaafce
parentd229bfd20d2ed88116f8b6b1b6ec5424551638a0 (diff)
downloadbcm5719-llvm-c6cd1f01395ef45e0e618a9c26d1365eec582455.tar.gz
bcm5719-llvm-c6cd1f01395ef45e0e618a9c26d1365eec582455.zip
Fixed extra ‘;’ warning
llvm-svn: 324830
-rw-r--r--lld/ELF/ICF.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/ICF.cpp b/lld/ELF/ICF.cpp
index 310364a89e0..8e20ad331e9 100644
--- a/lld/ELF/ICF.cpp
+++ b/lld/ELF/ICF.cpp
@@ -396,7 +396,7 @@ static void Print(const Twine &Prefix, InputSection *S) {
return;
std::string File = S->File ? S->File->getName() : "<internal>";
message(Prefix + " section '" + S->Name + "' from file '" + File + "'");
-};
+}
// The main function of ICF.
template <class ELFT> void ICF<ELFT>::run() {
OpenPOWER on IntegriCloud