mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-01 01:31:26 +00:00
[WebAssembly] Fix variable name.
llvm-svn: 326301
This commit is contained in:
parent
67769100ce
commit
26a84fc84f
@ -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) + "]");
|
||||
|
Loading…
Reference in New Issue
Block a user