diff options
| author | Rui Ueyama <ruiu@google.com> | 2016-08-12 03:25:25 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2016-08-12 03:25:25 +0000 |
| commit | 7ad9d6d2f0a0bf472455ccdc41e919f4165a7e1f (patch) | |
| tree | c6c13987b899ac60ba00146a8dca2741e38d4813 | |
| parent | 0b9ce6a48a05fa023962f6f578908521aa9538f4 (diff) | |
| download | bcm5719-llvm-7ad9d6d2f0a0bf472455ccdc41e919f4165a7e1f.tar.gz bcm5719-llvm-7ad9d6d2f0a0bf472455ccdc41e919f4165a7e1f.zip | |
Remove excessive parentheses.
llvm-svn: 278462
| -rw-r--r-- | lld/ELF/LinkerScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp index 980d27e61f3..d7e460fa156 100644 --- a/lld/ELF/LinkerScript.cpp +++ b/lld/ELF/LinkerScript.cpp @@ -129,7 +129,7 @@ LinkerScript<ELFT>::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<ELFT>::X); return Ret; |

