summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lld/lib/ReaderWriter/ELF/ELFFile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/lib/ReaderWriter/ELF/ELFFile.h b/lld/lib/ReaderWriter/ELF/ELFFile.h
index 388e5b89089..6a66f979cfa 100644
--- a/lld/lib/ReaderWriter/ELF/ELFFile.h
+++ b/lld/lib/ReaderWriter/ELF/ELFFile.h
@@ -616,7 +616,7 @@ template <class ELFT> std::error_code ELFFile<ELFT>::createAtoms() {
const Elf_Shdr *section = i.first;
// Check if need to create atoms for this section?
- if ((ignoreCreateAtomsForSection(section)))
+ if (ignoreCreateAtomsForSection(section))
continue;
std::vector<Elf_Sym_Iter> &symbols = i.second;
OpenPOWER on IntegriCloud