| Index: src/wasm/wasm-interpreter.cc | 
| diff --git a/src/wasm/wasm-interpreter.cc b/src/wasm/wasm-interpreter.cc | 
| index 05bcf8f597be30ccadcf3483accdfb15018f1248..2c39f771dd9b94e6209921cb89abd631946a19d1 100644 | 
| --- a/src/wasm/wasm-interpreter.cc | 
| +++ b/src/wasm/wasm-interpreter.cc | 
| @@ -1355,12 +1355,6 @@ class ThreadImpl : public WasmInterpreter::Thread { | 
| blocks_.pop_back(); | 
| break; | 
| } | 
| -        case kExprI8Const: { | 
| -          ImmI8Operand operand(&decoder, code->at(pc)); | 
| -          Push(pc, WasmVal(operand.value)); | 
| -          len = 1 + operand.length; | 
| -          break; | 
| -        } | 
| case kExprI32Const: { | 
| ImmI32Operand operand(&decoder, code->at(pc)); | 
| Push(pc, WasmVal(operand.value)); | 
|  |