diff options
author | Thomas Lively <tlively@google.com> | 2024-01-26 10:33:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-26 10:33:40 -0800 |
commit | 5d297dca547fdca2d525f251a27d0a94fc2c2674 (patch) | |
tree | de2eaa163260754ec94265d50a45dcb5e9661d32 /test/spec | |
parent | d23a63fce8635aa6e401d016a5d0bf23f6f030e8 (diff) | |
download | binaryen-5d297dca547fdca2d525f251a27d0a94fc2c2674.tar.gz binaryen-5d297dca547fdca2d525f251a27d0a94fc2c2674.tar.bz2 binaryen-5d297dca547fdca2d525f251a27d0a94fc2c2674.zip |
Update the text syntax for tuple types (#6246)
Instead of e.g. `(i32 i32)`, use `(tuple i32 i32)`. Having a keyword to
introduce the s-expression is more consistent with the rest of the language.
Diffstat (limited to 'test/spec')
-rw-r--r-- | test/spec/exception-handling-old.wast | 2 | ||||
-rw-r--r-- | test/spec/multivalue.wast | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/spec/exception-handling-old.wast b/test/spec/exception-handling-old.wast index 75bfe70e8..b56c4f295 100644 --- a/test/spec/exception-handling-old.wast +++ b/test/spec/exception-handling-old.wast @@ -75,7 +75,7 @@ ) ) - (func (export "try_throw_multivalue_catch") (result i32) (local $x (i32 f32)) + (func (export "try_throw_multivalue_catch") (result i32) (local $x (tuple i32 f32)) (try (result i32) (do (throw $e-i32-f32 (i32.const 5) (f32.const 1.5)) diff --git a/test/spec/multivalue.wast b/test/spec/multivalue.wast index 1e90f0d07..d6d10ff97 100644 --- a/test/spec/multivalue.wast +++ b/test/spec/multivalue.wast @@ -1,5 +1,5 @@ (module - (global $global_pair (mut (i32 i64)) (tuple.make 2 (i32.const 0) (i64.const 0))) + (global $global_pair (mut (tuple i32 i64)) (tuple.make 2 (i32.const 0) (i64.const 0))) (func $pair (export "pair") (result i32 i64) (tuple.make 2 (i32.const 42) @@ -7,7 +7,7 @@ ) ) (func (export "tuple-local") (result i32 i64) - (local $x (i32 i64)) + (local $x (tuple i32 i64)) (local.get $x) ) (func (export "tuple-global-get") (result i32 i64) |