[ELF] - Merged 2 lines. NFC.

llvm-svn: 276768
diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp
index c7219f6..9e4ec94 100644
--- a/lld/ELF/LinkerScript.cpp
+++ b/lld/ELF/LinkerScript.cpp
@@ -811,10 +811,7 @@
     expect(",");
     readExpr();
     expect(")");
-    return [=](uint64_t Dot) -> uint64_t {
-      uint64_t Val = E(Dot);
-      return alignTo(Dot, Val);
-    };
+    return [=](uint64_t Dot) -> uint64_t { return alignTo(Dot, E(Dot)); };
   }
   if (Tok == "DATA_SEGMENT_END") {
     expect("(");