summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/wasm/exceptions-rethrow.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/wasm/exceptions-rethrow.js')
-rw-r--r--deps/v8/test/mjsunit/wasm/exceptions-rethrow.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/deps/v8/test/mjsunit/wasm/exceptions-rethrow.js b/deps/v8/test/mjsunit/wasm/exceptions-rethrow.js
index 3b3fa365d5..be609cbf2d 100644
--- a/deps/v8/test/mjsunit/wasm/exceptions-rethrow.js
+++ b/deps/v8/test/mjsunit/wasm/exceptions-rethrow.js
@@ -26,11 +26,11 @@ load("test/mjsunit/wasm/exceptions-utils.js");
kExprTry, kWasmI32,
kExprThrow, except,
kExprCatch,
- kExprSetLocal, 1,
- kExprGetLocal, 0,
+ kExprLocalSet, 1,
+ kExprLocalGet, 0,
kExprI32Eqz,
kExprIf, kWasmStmt,
- kExprGetLocal, 1,
+ kExprLocalGet, 1,
kExprRethrow,
kExprEnd,
kExprI32Const, 23,
@@ -56,23 +56,23 @@ load("test/mjsunit/wasm/exceptions-utils.js");
kExprTry, kWasmI32,
kExprThrow, except2,
kExprCatch,
- kExprSetLocal, 2,
+ kExprLocalSet, 2,
kExprTry, kWasmI32,
kExprThrow, except1,
kExprCatch,
- kExprSetLocal, 1,
- kExprGetLocal, 0,
+ kExprLocalSet, 1,
+ kExprLocalGet, 0,
kExprI32Const, 0,
kExprI32Eq,
kExprIf, kWasmStmt,
- kExprGetLocal, 1,
+ kExprLocalGet, 1,
kExprRethrow,
kExprEnd,
- kExprGetLocal, 0,
+ kExprLocalGet, 0,
kExprI32Const, 1,
kExprI32Eq,
kExprIf, kWasmStmt,
- kExprGetLocal, 2,
+ kExprLocalGet, 2,
kExprRethrow,
kExprEnd,
kExprI32Const, 23,
@@ -98,12 +98,12 @@ load("test/mjsunit/wasm/exceptions-utils.js");
kExprTry, kWasmI32,
kExprThrow, except,
kExprCatch,
- kExprSetLocal, 1,
+ kExprLocalSet, 1,
kExprTry, kWasmI32,
- kExprGetLocal, 0,
+ kExprLocalGet, 0,
kExprI32Eqz,
kExprIf, kWasmStmt,
- kExprGetLocal, 1,
+ kExprLocalGet, 1,
kExprRethrow,
kExprEnd,
kExprI32Const, 42,