Fixed extra ‘;’ warning
authorGalina Kistanova <gkistanova@gmail.com>
Sun, 11 Feb 2018 02:32:21 +0000 (02:32 +0000)
committerGalina Kistanova <gkistanova@gmail.com>
Sun, 11 Feb 2018 02:32:21 +0000 (02:32 +0000)
llvm-svn: 324830

lld/ELF/ICF.cpp

index 310364a..8e20ad3 100644 (file)
@@ -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() {