| Index: src/wasm/wasm-opcodes.cc
|
| diff --git a/src/wasm/wasm-opcodes.cc b/src/wasm/wasm-opcodes.cc
|
| index dd0abc8991a65634be1d11e4a1107bbecc1cf6bd..f9ee3725bae6feeefa89bcbe119e181940e12f9b 100644
|
| --- a/src/wasm/wasm-opcodes.cc
|
| +++ b/src/wasm/wasm-opcodes.cc
|
| @@ -129,10 +129,12 @@ const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) {
|
| CASE_SIGN_OP(INT, LoadMem8, "load8")
|
| CASE_SIGN_OP(INT, LoadMem16, "load16")
|
| CASE_SIGN_OP(I64, LoadMem32, "load32")
|
| + CASE_S128_OP(LoadMem, "load128")
|
| CASE_ALL_OP(StoreMem, "store")
|
| CASE_INT_OP(StoreMem8, "store8")
|
| CASE_INT_OP(StoreMem16, "store16")
|
| CASE_I64_OP(StoreMem32, "store32")
|
| + CASE_S128_OP(StoreMem, "store128")
|
|
|
| // Non-standard opcodes.
|
| CASE_OP(Try, "try")
|
|
|