| 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..2611833aa3d7a511aa0d3e5b80f03b323f7878c6 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, // --
|
| @@ -38,7 +37,8 @@ function makeFFI(func, t) {
|
| kExprGetLocal, 6, // --
|
| kExprGetLocal, 7, // --
|
| kExprGetLocal, 8, // --
|
| - kExprGetLocal, 9 // --
|
| + kExprGetLocal, 9, // --
|
| + kExprCallImport, 0 // --
|
| ]) // --
|
| .exportFunc();
|
|
|
|
|