summaryrefslogtreecommitdiff
path: root/test/gtest
diff options
context:
space:
mode:
Diffstat (limited to 'test/gtest')
-rw-r--r--test/gtest/cfg.cpp12
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)