Remove extra parentheses.
authorRui Ueyama <ruiu@google.com>
Fri, 23 Jan 2015 23:39:30 +0000 (23:39 +0000)
committerRui Ueyama <ruiu@google.com>
Fri, 23 Jan 2015 23:39:30 +0000 (23:39 +0000)
llvm-svn: 226965

lld/lib/ReaderWriter/ELF/ELFFile.h

index 388e5b8..6a66f97 100644 (file)
@@ -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;