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

Unified Diff: test/mjsunit/regress/wasm/regression-5531.js

Issue 2595733003: [wasm] Remove non-standard kExprI8Const bytecode (Closed)
Patch Set: Remove regression test Created 3 years, 11 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: test/mjsunit/regress/wasm/regression-5531.js
diff --git a/test/mjsunit/regress/wasm/regression-5531.js b/test/mjsunit/regress/wasm/regression-5531.js
index 9c1c092519fad02cb221d1b091849e4ca662daf3..1363f96264d3d86eeb76d22cfe6f6be83f8eb919 100644
--- a/test/mjsunit/regress/wasm/regression-5531.js
+++ b/test/mjsunit/regress/wasm/regression-5531.js
@@ -13,8 +13,8 @@ load("test/mjsunit/wasm/wasm-module-builder.js");
builder.addFunction("foo", kSig_i_v)
.addBody([
kExprI32Const, 0x00,
- kExprI8Const, 0xcb,
- kExprI8Const, 0xff,
+ kExprI32Const, 0x0b,
+ kExprI32Const, 0x0f,
kExprBrTable, 0xcb, 0xcb, 0xcb, 0x00, 0x00, 0xcb, 0x00 // entries=1238475
])
.exportFunc();

Powered by Google App Engine
This is Rietveld 408576698