[lld] r320777 - [WebAssembly] Remove extra semicolon. NFC.
Sam Clegg via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 14 16:34:32 PST 2017
Author: sbc
Date: Thu Dec 14 16:34:32 2017
New Revision: 320777
URL: http://llvm.org/viewvc/llvm-project?rev=320777&view=rev
Log:
[WebAssembly] Remove extra semicolon. NFC.
Modified:
lld/trunk/wasm/OutputSegment.h
Modified: lld/trunk/wasm/OutputSegment.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/wasm/OutputSegment.h?rev=320777&r1=320776&r2=320777&view=diff
==============================================================================
--- lld/trunk/wasm/OutputSegment.h (original)
+++ lld/trunk/wasm/OutputSegment.h Thu Dec 14 16:34:32 2017
@@ -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();
}
More information about the llvm-commits
mailing list