summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/wasm/graceful_shutdown.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/wasm/graceful_shutdown.js')
-rw-r--r--deps/v8/test/mjsunit/wasm/graceful_shutdown.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/test/mjsunit/wasm/graceful_shutdown.js b/deps/v8/test/mjsunit/wasm/graceful_shutdown.js
index aa50e6cf77..0f55b795c1 100644
--- a/deps/v8/test/mjsunit/wasm/graceful_shutdown.js
+++ b/deps/v8/test/mjsunit/wasm/graceful_shutdown.js
@@ -14,7 +14,7 @@ load("test/mjsunit/wasm/wasm-module-builder.js");
for (i = 0; i < 100; i++) {
builder.addFunction("sub" + i, kSig_i_i)
.addBody([ // --
- kExprGetLocal, 0, // --
+ kExprLocalGet, 0, // --
kExprI32Const, i % 61, // --
kExprI32Sub]) // --
.exportFunc()