| Index: test/mjsunit/wasm/gc-frame.js
|
| diff --git a/test/mjsunit/wasm/gc-frame.js b/test/mjsunit/wasm/gc-frame.js
|
| index 8387d26176d007096ad7dbdcdf37ed7b6abdd021..3b9b7b7d74a2e1ec2e8f3164b5bc0f085ac74fbe 100644
|
| --- a/test/mjsunit/wasm/gc-frame.js
|
| +++ b/test/mjsunit/wasm/gc-frame.js
|
| @@ -17,7 +17,6 @@ function makeFFI(func, t) {
|
| // the different parts of the stack.
|
| builder.addFunction("main", sig_index)
|
| .addBody([
|
| - kExprCallImport, 0, // --
|
| kExprGetLocal, 0, // --
|
| kExprGetLocal, 1, // --
|
| kExprGetLocal, 2, // --
|
| @@ -28,7 +27,7 @@ function makeFFI(func, t) {
|
| kExprGetLocal, 7, // --
|
| kExprGetLocal, 8, // --
|
| kExprGetLocal, 9, // --
|
| - kExprCallImport, 0, // --
|
| + kExprCallImport, 10, 0, // --
|
| kExprGetLocal, 0, // --
|
| kExprGetLocal, 1, // --
|
| kExprGetLocal, 2, // --
|
| @@ -38,7 +37,8 @@ function makeFFI(func, t) {
|
| kExprGetLocal, 6, // --
|
| kExprGetLocal, 7, // --
|
| kExprGetLocal, 8, // --
|
| - kExprGetLocal, 9 // --
|
| + kExprGetLocal, 9, // --
|
| + kExprCallImport, 10, 0 // --
|
| ]) // --
|
| .exportFunc();
|
|
|
|
|