Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(535)

Unified Diff: src/wasm/function-body-decoder.cc

Issue 2946303002: [wasm] Remove double check for --experimental-wasm-simd flag (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/wasm/function-body-decoder.cc
diff --git a/src/wasm/function-body-decoder.cc b/src/wasm/function-body-decoder.cc
index 29b90ec61ffe3cdf64e10eb9ed66172c8ead6360..0dfbf33d317151cad45e37e082a4718998e31c0e 100644
--- a/src/wasm/function-body-decoder.cc
+++ b/src/wasm/function-body-decoder.cc
@@ -1615,11 +1615,9 @@ class WasmFullDecoder : public WasmDecoder {
break;
}
case kExprS128LoadMem:
- CHECK_PROTOTYPE_OPCODE(simd);
len = DecodePrefixedLoadMem(kWasmS128, MachineType::Simd128());
break;
case kExprS128StoreMem:
- CHECK_PROTOTYPE_OPCODE(simd);
len = DecodePrefixedStoreMem(kWasmS128, MachineType::Simd128());
break;
default: {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698