From f28210285b4e2dd1b9592b55e7864a564b6738b3 Mon Sep 17 00:00:00 2001 From: George Rimar Date: Mon, 26 Sep 2016 11:00:48 +0000 Subject: [PATCH] [ELF] - Format. NFC. llvm-svn: 282395 --- lld/ELF/LinkerScript.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp index 0fb8c2c..65bcfd9 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("("); -- 2.7.4