summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/wasm-stepping-with-source-map.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/debugger/wasm-stepping-with-source-map.js')
-rw-r--r--deps/v8/test/inspector/debugger/wasm-stepping-with-source-map.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/test/inspector/debugger/wasm-stepping-with-source-map.js b/deps/v8/test/inspector/debugger/wasm-stepping-with-source-map.js
index 1c9ec95577..57b2fd581c 100644
--- a/deps/v8/test/inspector/debugger/wasm-stepping-with-source-map.js
+++ b/deps/v8/test/inspector/debugger/wasm-stepping-with-source-map.js
@@ -17,12 +17,12 @@ builder.addFunction('wasm_B', kSig_v_i)
.addBody([
// clang-format off
kExprLoop, kWasmStmt, // while
- kExprGetLocal, 0, // -
+ kExprLocalGet, 0, // -
kExprIf, kWasmStmt, // if <param0> != 0
- kExprGetLocal, 0, // -
+ kExprLocalGet, 0, // -
kExprI32Const, 1, // -
kExprI32Sub, // -
- kExprSetLocal, 0, // decrease <param0>
+ kExprLocalSet, 0, // decrease <param0>
kExprCallFunction, func_a_idx, // -
kExprBr, 1, // continue
kExprEnd, // -