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

Unified Diff: src/wasm/function-body-decoder-impl.h

Issue 2919203002: [WASM] Eliminate SIMD boolean vector types. (Closed)
Patch Set: Restore DCHECKs in AssembleMove/Swap now that we're back to 1 SIMD representation. 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 | « src/wasm/function-body-decoder.cc ('k') | src/wasm/module-decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/wasm/function-body-decoder-impl.h
diff --git a/src/wasm/function-body-decoder-impl.h b/src/wasm/function-body-decoder-impl.h
index 7f88b4d741e747705240e3ccc7c7aba4acb0aef1..acda17cfd7b16e2231c2795b74f1f37104b0bc81 100644
--- a/src/wasm/function-body-decoder-impl.h
+++ b/src/wasm/function-body-decoder-impl.h
@@ -152,15 +152,6 @@ struct BlockTypeOperand {
case kLocalS128:
*result = kWasmS128;
return true;
- case kLocalS1x4:
- *result = kWasmS1x4;
- return true;
- case kLocalS1x8:
- *result = kWasmS1x8;
- return true;
- case kLocalS1x16:
- *result = kWasmS1x16;
- return true;
default:
*result = kWasmStmt;
return false;
« no previous file with comments | « src/wasm/function-body-decoder.cc ('k') | src/wasm/module-decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698