Commit 0d059e07 authored by Deepti Gandluri's avatar Deepti Gandluri Committed by Commit Bot

[wasm-simd] Pass decode if SSSE3 flag is set

Change-Id: Iafe2b5635287fea5bd3c687b4ed897edbce4b0aa
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2798978Reviewed-by: 's avatarZhi An Ng <zhin@chromium.org>
Commit-Queue: Deepti Gandluri <gdeepti@chromium.org>
Cr-Commit-Position: refs/heads/master@{#73781}
parent 7514db4b
......@@ -3329,7 +3329,7 @@ class WasmFullDecoder : public WasmDecoder<validate> {
DECODE(Simd) {
CHECK_PROTOTYPE_OPCODE(simd);
if (!CheckHardwareSupportsSimd()) {
if (!CheckHardwareSupportsSimd() && !FLAG_wasm_simd_ssse3_codegen) {
if (FLAG_correctness_fuzzer_suppressions) {
FATAL("Aborting on missing Wasm SIMD support");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment