| Index: src/wasm/ast-decoder.cc
|
| diff --git a/src/wasm/ast-decoder.cc b/src/wasm/ast-decoder.cc
|
| index ff6af34a02089e0831878d92374236ab42ac069a..13aaba1e85319524d851dccd597dd685817d0d25 100644
|
| --- a/src/wasm/ast-decoder.cc
|
| +++ b/src/wasm/ast-decoder.cc
|
| @@ -1967,7 +1967,7 @@ bool PrintAst(AccountingAllocator* allocator, const FunctionBody& body,
|
| os << "k" << WasmOpcodes::OpcodeName(opcode) << ",";
|
|
|
| for (size_t j = 1; j < length; ++j) {
|
| - os << " " << AsHex(i.pc()[j], 2) << ",";
|
| + os << " 0x" << AsHex(i.pc()[j], 2) << ",";
|
| }
|
|
|
| switch (opcode) {
|
|
|