[WebAssembly] Fix variable name.

llvm-svn: 326301
This commit is contained in:
Rui Ueyama 2018-02-28 03:43:38 +00:00
parent 67769100ce
commit 26a84fc84f
1 changed files with 1 additions and 1 deletions

View File

@ -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) + "]");