commit | 7ad9d6d2f0a0bf472455ccdc41e919f4165a7e1f | [log] [tgz] |
---|---|---|
author | Rui Ueyama <ruiu@google.com> | Fri Aug 12 03:25:25 2016 +0000 |
committer | Rui Ueyama <ruiu@google.com> | Fri Aug 12 03:25:25 2016 +0000 |
tree | c6c13987b899ac60ba00146a8dca2741e38d4813 | |
parent | 0b9ce6a48a05fa023962f6f578908521aa9538f4 [diff] [blame] |
Remove excessive parentheses. llvm-svn: 278462
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 @@ Ret.push_back(S); } - if ((llvm::find(Patterns, "COMMON") != Patterns.end())) + if (llvm::find(Patterns, "COMMON") != Patterns.end()) Ret.push_back(CommonInputSection<ELFT>::X); return Ret;