summaryrefslogtreecommitdiff
path: root/test/regress/interp-ehv3-locals.txt
diff options
context:
space:
mode:
authorSoni L. <EnderMoneyMod@gmail.com>2024-10-07 20:03:35 -0300
committerGitHub <noreply@github.com>2024-10-07 16:03:35 -0700
commite1d84ff0466c269a457056a0420d1b6cc5cf3815 (patch)
tree4a909c0048a3a51c2cfba6084ba968913529e395 /test/regress/interp-ehv3-locals.txt
parent7d229cf0965a41fe22338f08895231190573ca24 (diff)
downloadwabt-e1d84ff0466c269a457056a0420d1b6cc5cf3815.tar.gz
wabt-e1d84ff0466c269a457056a0420d1b6cc5cf3815.tar.bz2
wabt-e1d84ff0466c269a457056a0420d1b6cc5cf3815.zip
wasm-interp: Fix catch handlers correctly (#2483)
local decl count != local count
Diffstat (limited to 'test/regress/interp-ehv3-locals.txt')
-rw-r--r--test/regress/interp-ehv3-locals.txt18
1 files changed, 15 insertions, 3 deletions
diff --git a/test/regress/interp-ehv3-locals.txt b/test/regress/interp-ehv3-locals.txt
index e4f05c83..316563ab 100644
--- a/test/regress/interp-ehv3-locals.txt
+++ b/test/regress/interp-ehv3-locals.txt
@@ -3,7 +3,7 @@
;;; NOTE: ref: issue-2476
(module
(tag $e0)
- (func (export "broken-local") (result i32)
+ (func (export "set-local") (result i32)
(local $value i32)
(try $try
(do
@@ -14,9 +14,21 @@
)
(local.get $value)
)
+ (func (export "multiple-locals") (result i32)
+ (local $a i32)
+ (local $b i32)
+ (try $try
+ (do
+ (throw $e0)
+ )
+ (catch $e0)
+ )
+ (local.get $a)
+ )
)
-(assert_return (invoke "broken-local") (i32.const 1))
+(assert_return (invoke "set-local") (i32.const 1))
+(assert_return (invoke "multiple-locals") (i32.const 0))
(;; STDOUT ;;;
-2/2 tests passed.
+3/3 tests passed.
;;; STDOUT ;;)