From 26a84fc84fa42f07a91db90217431df6d6f4cc2d Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Wed, 28 Feb 2018 03:43:38 +0000 Subject: [PATCH] [WebAssembly] Fix variable name. llvm-svn: 326301 --- lld/wasm/WriterUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/wasm/WriterUtils.cpp b/lld/wasm/WriterUtils.cpp index 0d3b5f0aca0b..a5d84178ffe0 100644 --- a/lld/wasm/WriterUtils.cpp +++ b/lld/wasm/WriterUtils.cpp @@ -63,7 +63,7 @@ void wasm::writeStr(raw_ostream &OS, StringRef String, StringRef Msg) { OS.write(String.data(), String.size()); } -void wasm::writeU8(raw_ostream &OS, uint8_t byte, StringRef Msg) { OS << byte; } +void wasm::writeU8(raw_ostream &OS, uint8_t Byte, StringRef Msg) { OS << Byte; } void wasm::writeU32(raw_ostream &OS, uint32_t Number, StringRef Msg) { debugWrite(OS.tell(), Msg + "[" + utohexstr(Number) + "]");