diff options
Diffstat (limited to 'deps/v8/test/mjsunit/wasm/many-parameters.js')
-rw-r--r-- | deps/v8/test/mjsunit/wasm/many-parameters.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/test/mjsunit/wasm/many-parameters.js b/deps/v8/test/mjsunit/wasm/many-parameters.js index 46b231943d..7813ad453c 100644 --- a/deps/v8/test/mjsunit/wasm/many-parameters.js +++ b/deps/v8/test/mjsunit/wasm/many-parameters.js @@ -37,7 +37,7 @@ types.forEach((type, type_idx) => { let body = []; for (let i = 0; i < num_params; ++i) - body.push(kExprGetLocal, (i + shift) % num_params); + body.push(kExprLocalGet, (i + shift) % num_params); for (let i = 0; i < num_const_params; ++i) body.push(...type_const[type_idx](num_params + i)); body.push(kExprCallFunction, 0); |