[lld] r226965 - Remove extra parentheses.

Rui Ueyama ruiu at google.com
Fri Jan 23 15:39:31 PST 2015


Author: ruiu
Date: Fri Jan 23 17:39:30 2015
New Revision: 226965

URL: http://llvm.org/viewvc/llvm-project?rev=226965&view=rev
Log:
Remove extra parentheses.

Modified:
    lld/trunk/lib/ReaderWriter/ELF/ELFFile.h

Modified: lld/trunk/lib/ReaderWriter/ELF/ELFFile.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/ReaderWriter/ELF/ELFFile.h?rev=226965&r1=226964&r2=226965&view=diff
==============================================================================
--- lld/trunk/lib/ReaderWriter/ELF/ELFFile.h (original)
+++ lld/trunk/lib/ReaderWriter/ELF/ELFFile.h Fri Jan 23 17:39:30 2015
@@ -616,7 +616,7 @@ template <class ELFT> std::error_code EL
     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;





More information about the llvm-commits mailing list