projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d229bfd
)
Fixed extra ‘;’ warning
author
Galina Kistanova
<gkistanova@gmail.com>
Sun, 11 Feb 2018 02:32:21 +0000
(
02:32
+0000)
committer
Galina Kistanova
<gkistanova@gmail.com>
Sun, 11 Feb 2018 02:32:21 +0000
(
02:32
+0000)
llvm-svn: 324830
lld/ELF/ICF.cpp
patch
|
blob
|
history
diff --git
a/lld/ELF/ICF.cpp
b/lld/ELF/ICF.cpp
index
310364a
..
8e20ad3
100644
(file)
--- 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() {