diff options
author | Thomas Lively <tlively@google.com> | 2024-01-29 16:31:33 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-29 16:31:33 -0800 |
commit | 88d6b7c08f3fbf1b510ae630f83ff8d44321b151 (patch) | |
tree | 1227b162507a7c1e7de2b8255ccdd0bef34e1347 /test/lit/basic | |
parent | c0046ad0e44d39f7ef33fa6a401a0d9d5a34a578 (diff) | |
download | binaryen-88d6b7c08f3fbf1b510ae630f83ff8d44321b151.tar.gz binaryen-88d6b7c08f3fbf1b510ae630f83ff8d44321b151.tar.bz2 binaryen-88d6b7c08f3fbf1b510ae630f83ff8d44321b151.zip |
Update pop text syntax (#6251)
Rather than `(pop valtype*)`, use `(pop valtype)`, where `valtype` is now
allowed to be a tuple. This will make it possible to parse un-folded multivalue
pops in the new text parser. The alternative would have been to put an arity in
the syntax like we have for other tuple instructions, but that's much uglier.
Diffstat (limited to 'test/lit/basic')
-rw-r--r-- | test/lit/basic/exception-handling-old.wast | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/lit/basic/exception-handling-old.wast b/test/lit/basic/exception-handling-old.wast index 086ff1484..5474a4d90 100644 --- a/test/lit/basic/exception-handling-old.wast +++ b/test/lit/basic/exception-handling-old.wast @@ -115,7 +115,7 @@ ;; CHECK-TEXT-NEXT: ) ;; CHECK-TEXT-NEXT: (catch $e-i32-i64 ;; CHECK-TEXT-NEXT: (local.set $x - ;; CHECK-TEXT-NEXT: (pop i32 i64) + ;; CHECK-TEXT-NEXT: (pop (tuple i32 i64)) ;; CHECK-TEXT-NEXT: ) ;; CHECK-TEXT-NEXT: (drop ;; CHECK-TEXT-NEXT: (tuple.extract 2 0 @@ -139,7 +139,7 @@ ;; CHECK-BIN-NEXT: ) ;; CHECK-BIN-NEXT: (catch $e-i32-i64 ;; CHECK-BIN-NEXT: (local.set $2 - ;; CHECK-BIN-NEXT: (pop i32 i64) + ;; CHECK-BIN-NEXT: (pop (tuple i32 i64)) ;; CHECK-BIN-NEXT: ) ;; CHECK-BIN-NEXT: (local.set $x ;; CHECK-BIN-NEXT: (block (result i32) @@ -168,7 +168,7 @@ (throw $e-i32-i64 (i32.const 0) (i64.const 0)) ) (catch $e-i32-i64 - (local.set $x (pop i32 i64)) + (local.set $x (pop (tuple i32 i64))) (drop (tuple.extract 2 0 (local.get $x) @@ -1387,7 +1387,7 @@ ;; CHECK-BIN-NODEBUG-NEXT: ) ;; CHECK-BIN-NODEBUG-NEXT: (catch $tag$2 ;; CHECK-BIN-NODEBUG-NEXT: (local.set $2 -;; CHECK-BIN-NODEBUG-NEXT: (pop i32 i64) +;; CHECK-BIN-NODEBUG-NEXT: (pop (tuple i32 i64)) ;; CHECK-BIN-NODEBUG-NEXT: ) ;; CHECK-BIN-NODEBUG-NEXT: (local.set $0 ;; CHECK-BIN-NODEBUG-NEXT: (block (result i32) |