Index: src/wasm/function-body-decoder.cc |
diff --git a/src/wasm/function-body-decoder.cc b/src/wasm/function-body-decoder.cc |
index 1ed95834d806528e0d3bd4f29eff237e21bfba16..c54cce4fde635148341fca2c88d198411a900349 100644 |
--- a/src/wasm/function-body-decoder.cc |
+++ b/src/wasm/function-body-decoder.cc |
@@ -327,8 +327,6 @@ class WasmDecoder : public Decoder { |
MemoryIndexOperand operand(this, pc); |
return 1 + operand.length; |
} |
- case kExprI8Const: |
- return 2; |
case kExprF32Const: |
return 5; |
case kExprF64Const: |
@@ -960,12 +958,6 @@ class WasmFullDecoder : public WasmDecoder { |
EndControl(); |
break; |
} |
- case kExprI8Const: { |
- ImmI8Operand operand(this, pc_); |
- Push(kWasmI32, BUILD(Int32Constant, operand.value)); |
- len = 1 + operand.length; |
- break; |
- } |
case kExprI32Const: { |
ImmI32Operand operand(this, pc_); |
Push(kWasmI32, BUILD(Int32Constant, operand.value)); |