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

Unified Diff: src/compiler/wasm-compiler.cc

Issue 2719953002: Add Int32x4 Wasm Simd Binops, compare ops, select (Closed)
Patch Set: Rebase again Created 3 years, 9 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
Index: src/compiler/wasm-compiler.cc
diff --git a/src/compiler/wasm-compiler.cc b/src/compiler/wasm-compiler.cc
index 04cad936457f0d6356d73ac785ff34404e4f576d..f9a2e2427afc11ff9fd8f201ee0d5b8e4b9b25c8 100644
--- a/src/compiler/wasm-compiler.cc
+++ b/src/compiler/wasm-compiler.cc
@@ -4091,7 +4091,7 @@ SourcePositionTable* WasmCompilationUnit::BuildGraphForWasmFunction(
.LowerGraph();
}
- if (builder.has_simd() && !CpuFeatures::SupportsSimd128()) {
+ if (builder.has_simd() && !CpuFeatures::SupportsWasmSimd128()) {
SimdScalarLowering(jsgraph_, func_body_.sig).LowerGraph();
}

Powered by Google App Engine
This is Rietveld 408576698