| Index: test/mjsunit/wasm/instantiate-module-basic.js
|
| diff --git a/test/mjsunit/wasm/instantiate-module-basic.js b/test/mjsunit/wasm/instantiate-module-basic.js
|
| index cacf655e73dc6e82748c64e483ac3fe3f8607735..5e3d1095d24b6f7d69ddf3d4636c36bcbd3c82d4 100644
|
| --- a/test/mjsunit/wasm/instantiate-module-basic.js
|
| +++ b/test/mjsunit/wasm/instantiate-module-basic.js
|
| @@ -7,13 +7,13 @@
|
| load("test/mjsunit/wasm/wasm-constants.js");
|
| load("test/mjsunit/wasm/wasm-module-builder.js");
|
|
|
| -let kReturnValue = 117;
|
| +let kReturnValue = 17;
|
|
|
| let buffer = (() => {
|
| let builder = new WasmModuleBuilder();
|
| builder.addMemory(1, 1, true);
|
| builder.addFunction("main", kSig_i_v)
|
| - .addBody([kExprI8Const, kReturnValue])
|
| + .addBody([kExprI32Const, kReturnValue])
|
| .exportFunc();
|
|
|
| return builder.toBuffer();
|
|
|