From: Sam Clegg Date: Fri, 15 Dec 2017 00:34:32 +0000 (+0000) Subject: [WebAssembly] Remove extra semicolon. NFC. X-Git-Tag: llvmorg-6.0.0-rc1~951 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a43c16157d2c7217a71a0fd558b1070a8d356f64;p=platform%2Fupstream%2Fllvm.git [WebAssembly] Remove extra semicolon. NFC. llvm-svn: 320777 --- diff --git a/lld/wasm/OutputSegment.h b/lld/wasm/OutputSegment.h index 9221277a4db1..1375aefae92f 100644 --- a/lld/wasm/OutputSegment.h +++ b/lld/wasm/OutputSegment.h @@ -27,7 +27,6 @@ public: Alignment = std::max(Alignment, Segment->getAlignment()); InputSegments.push_back(Segment); Size = llvm::alignTo(Size, Segment->getAlignment()); - ; Segment->setOutputSegment(this, Size); Size += Segment->getSize(); }