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

Unified Diff: test/mjsunit/regress/wasm/regression-667745.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-667745.js
diff --git a/test/mjsunit/regress/wasm/regression-667745.js b/test/mjsunit/regress/wasm/regression-667745.js
index f78681e9b55c3029cd98cfa14d5f1577e53eb9ba..edc3e23bd38bdfd2469e2b875aa78d2fe8b6660f 100644
--- a/test/mjsunit/regress/wasm/regression-667745.js
+++ b/test/mjsunit/regress/wasm/regression-667745.js
@@ -11,12 +11,12 @@ load("test/mjsunit/wasm/wasm-module-builder.js");
var builder = new WasmModuleBuilder();
builder.addFunction("test", kSig_i_iii)
.addBody([
-kExprI8Const, 0xcb,
+kExprI32Const, 0x0b,
kExprI32Clz,
kExprI32Clz,
kExprI32Clz,
kExprI32Const, 0x67,
-kExprI8Const, 0x67,
+kExprI32Const, 0x07,
kExprI32Clz,
kExprI32Clz,
kExprI32Clz,
@@ -407,7 +407,7 @@ kExprNop,
kExprI64DivU,
kExprUnreachable,
kExprI32GeS,
-kExprI8Const, 0xcb,
+kExprI32Const, 0x0b,
])
.exportFunc();
var module = builder.instantiate();

Powered by Google App Engine
This is Rietveld 408576698