From 7ad9d6d2f0a0bf472455ccdc41e919f4165a7e1f Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Fri, 12 Aug 2016 03:25:25 +0000 Subject: [PATCH] Remove excessive parentheses. llvm-svn: 278462 --- lld/ELF/LinkerScript.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp index 980d27e..d7e460f 100644 --- a/lld/ELF/LinkerScript.cpp +++ b/lld/ELF/LinkerScript.cpp @@ -129,7 +129,7 @@ LinkerScript::getInputSections(const InputSectionDescription *I) { Ret.push_back(S); } - if ((llvm::find(Patterns, "COMMON") != Patterns.end())) + if (llvm::find(Patterns, "COMMON") != Patterns.end()) Ret.push_back(CommonInputSection::X); return Ret; -- 2.7.4