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

Unified Diff: test/mjsunit/wasm/function-prototype.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/wasm/function-prototype.js
diff --git a/test/mjsunit/wasm/function-prototype.js b/test/mjsunit/wasm/function-prototype.js
index f2361039c9cc2f97b4cbc09ff7bca6cffc0c5dde..d3356cec80ea5b31f6f85c345e6661ba3d4db728 100644
--- a/test/mjsunit/wasm/function-prototype.js
+++ b/test/mjsunit/wasm/function-prototype.js
@@ -11,7 +11,7 @@ load("test/mjsunit/wasm/wasm-module-builder.js");
var builder = new WasmModuleBuilder();
var f = builder.addFunction("nine", kSig_i_v)
- .addBody([kExprI8Const, 9])
+ .addBody([kExprI32Const, 9])
.exportFunc();
var func = builder.instantiate().exports.nine;

Powered by Google App Engine
This is Rietveld 408576698