diff options
| -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("("); |

