[lld] r326300 - [WebAssembly] Remove unnecessary namespace specifiers. NFC.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 27 19:38:14 PST 2018
Author: ruiu
Date: Tue Feb 27 19:38:14 2018
New Revision: 326300
URL: http://llvm.org/viewvc/llvm-project?rev=326300&view=rev
Log:
[WebAssembly] Remove unnecessary namespace specifiers. NFC.
Modified:
lld/trunk/wasm/Writer.cpp
Modified: lld/trunk/wasm/Writer.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/wasm/Writer.cpp?rev=326300&r1=326299&r2=326300&view=diff
==============================================================================
--- lld/trunk/wasm/Writer.cpp (original)
+++ lld/trunk/wasm/Writer.cpp Tue Feb 27 19:38:14 2018
@@ -395,8 +395,8 @@ public:
void writeTo(raw_ostream &To) {
OS.flush();
- lld::wasm::writeUleb128(To, Type, "subsection type");
- lld::wasm::writeUleb128(To, Body.size(), "subsection size");
+ writeUleb128(To, Type, "subsection type");
+ writeUleb128(To, Body.size(), "subsection size");
To.write(Body.data(), Body.size());
}
More information about the llvm-commits
mailing list