| Index: src/wasm/wasm-opcodes.cc
|
| diff --git a/src/wasm/wasm-opcodes.cc b/src/wasm/wasm-opcodes.cc
|
| index 3f46789935a2071b2aaaf2723ac516a705fb985c..d1824e47a069b269dc616186fe51655cbe5e6188 100644
|
| --- a/src/wasm/wasm-opcodes.cc
|
| +++ b/src/wasm/wasm-opcodes.cc
|
| @@ -218,28 +218,14 @@ const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) {
|
| CASE_S128_OP(Or, "or")
|
| CASE_S128_OP(Xor, "xor")
|
| CASE_S128_OP(Not, "not")
|
| + CASE_S128_OP(Select, "select")
|
| CASE_S32x4_OP(Shuffle, "shuffle")
|
| - CASE_S32x4_OP(Select, "select")
|
| CASE_S16x8_OP(Shuffle, "shuffle")
|
| - CASE_S16x8_OP(Select, "select")
|
| CASE_S8x16_OP(Shuffle, "shuffle")
|
| - CASE_S8x16_OP(Select, "select")
|
| - CASE_S1x4_OP(And, "and")
|
| - CASE_S1x4_OP(Or, "or")
|
| - CASE_S1x4_OP(Xor, "xor")
|
| - CASE_S1x4_OP(Not, "not")
|
| CASE_S1x4_OP(AnyTrue, "any_true")
|
| CASE_S1x4_OP(AllTrue, "all_true")
|
| - CASE_S1x8_OP(And, "and")
|
| - CASE_S1x8_OP(Or, "or")
|
| - CASE_S1x8_OP(Xor, "xor")
|
| - CASE_S1x8_OP(Not, "not")
|
| CASE_S1x8_OP(AnyTrue, "any_true")
|
| CASE_S1x8_OP(AllTrue, "all_true")
|
| - CASE_S1x16_OP(And, "and")
|
| - CASE_S1x16_OP(Or, "or")
|
| - CASE_S1x16_OP(Xor, "xor")
|
| - CASE_S1x16_OP(Not, "not")
|
| CASE_S1x16_OP(AnyTrue, "any_true")
|
| CASE_S1x16_OP(AllTrue, "all_true")
|
|
|
|
|