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/gtest | |
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/gtest')
-rw-r--r-- | test/gtest/cfg.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/gtest/cfg.cpp b/test/gtest/cfg.cpp index c78eb218a..1b2d5b776 100644 --- a/test/gtest/cfg.cpp +++ b/test/gtest/cfg.cpp @@ -270,9 +270,9 @@ TEST_F(CFGTest, LinearReachingDefinitions) { auto moduleText = R"wasm( (module (func $bar - (local $a (i32)) - (local $b (i32)) - (local $c (i32)) + (local $a i32) + (local $b i32) + (local $c i32) (local.set $a (i32.const 1) ) @@ -335,8 +335,8 @@ TEST_F(CFGTest, ReachingDefinitionsIf) { auto moduleText = R"wasm( (module (func $bar - (local $a (i32)) - (local $b (i32)) + (local $a i32) + (local $b i32) (local.set $a (i32.const 1) ) @@ -406,7 +406,7 @@ TEST_F(CFGTest, ReachingDefinitionsIf) { TEST_F(CFGTest, ReachingDefinitionsLoop) { auto moduleText = R"wasm( (module - (func $bar (param $a (i32)) (param $b (i32)) + (func $bar (param $a i32) (param $b i32) (loop $loop (drop (local.get $a) |