diff options
| author | George Rimar <grimar@accesssoftek.com> | 2016-09-26 11:00:48 +0000 |
|---|---|---|
| committer | George Rimar <grimar@accesssoftek.com> | 2016-09-26 11:00:48 +0000 |
| commit | f28210285b4e2dd1b9592b55e7864a564b6738b3 (patch) | |
| tree | 04c3d99075e4449cbcc8053b936082a607fc9c30 | |
| parent | 1559f7625762bb3096be82500b75c67f5682ccc4 (diff) | |
| download | bcm5719-llvm-f28210285b4e2dd1b9592b55e7864a564b6738b3.tar.gz bcm5719-llvm-f28210285b4e2dd1b9592b55e7864a564b6738b3.zip | |
[ELF] - Format. NFC.
llvm-svn: 282395
| -rw-r--r-- | lld/ELF/LinkerScript.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp index 0fb8c2c9453..65bcfd9648e 100644 --- a/lld/ELF/LinkerScript.cpp +++ b/lld/ELF/LinkerScript.cpp @@ -1491,9 +1491,7 @@ Expr ScriptParser::readPrimary() { expect("("); StringRef Tok = next(); expect(")"); - return [=](uint64_t Dot) { - return ScriptBase->isDefined(Tok) ? 1 : 0; - }; + return [=](uint64_t Dot) { return ScriptBase->isDefined(Tok) ? 1 : 0; }; } if (Tok == "SEGMENT_START") { expect("("); |

