Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the text syntax for tuple types #6246

Merged
merged 4 commits into from
Jan 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update new test
  • Loading branch information
tlively committed Jan 26, 2024

Verified

This commit was signed with the committer’s verified signature.
targos Michaël Zasso
commit ae345fbb051835d1b6dc5f0b21e7107668e5b429
8 changes: 4 additions & 4 deletions test/lit/passes/rse-eh.wast
Original file line number Diff line number Diff line change
@@ -194,7 +194,7 @@
;; CHECK: (func $nested-try_table2 (type $0)
;; CHECK-NEXT: (local $x i32)
;; CHECK-NEXT: (local $exn exnref)
;; CHECK-NEXT: (local $pair (i32 exnref))
;; CHECK-NEXT: (local $pair (tuple i32 exnref))
;; CHECK-NEXT: (block $catch_all0
;; CHECK-NEXT: (try_table (catch_all $catch_all0)
;; CHECK-NEXT: (local.set $pair
@@ -226,7 +226,7 @@
(func $nested-try_table2
(local $x i32)
(local $exn exnref)
(local $pair (i32 exnref))
(local $pair (tuple i32 exnref))
(block $catch_all0
(try_table (catch_all $catch_all0)
(local.set $pair
@@ -254,7 +254,7 @@
;; CHECK: (func $nested-try_table3 (type $0)
;; CHECK-NEXT: (local $x i32)
;; CHECK-NEXT: (local $exn exnref)
;; CHECK-NEXT: (local $pair (i32 exnref))
;; CHECK-NEXT: (local $pair (tuple i32 exnref))
;; CHECK-NEXT: (block $catch_all0
;; CHECK-NEXT: (try_table (catch_all $catch_all0)
;; CHECK-NEXT: (block $outer1
@@ -287,7 +287,7 @@
(func $nested-try_table3
(local $x i32)
(local $exn exnref)
(local $pair (i32 exnref))
(local $pair (tuple i32 exnref))
(block $catch_all0
(try_table (catch_all $catch_all0)
(block $outer1
Loading