summaryrefslogtreecommitdiff
path: root/test/passes/emit-spec-wrapper=a.wat.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/emit-spec-wrapper=a.wat.wast')
-rw-r--r--test/passes/emit-spec-wrapper=a.wat.wast12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/passes/emit-spec-wrapper=a.wat.wast b/test/passes/emit-spec-wrapper=a.wat.wast
index 4ea764b61..8ebd83b0b 100644
--- a/test/passes/emit-spec-wrapper=a.wat.wast
+++ b/test/passes/emit-spec-wrapper=a.wat.wast
@@ -7,21 +7,21 @@
(export "types3" (func $types3))
(func $add (param $x i32) (param $y i32) (result i32)
(i32.add
- (get_local $x)
- (get_local $y)
+ (local.get $x)
+ (local.get $y)
)
)
(func $unexported (param $x i32) (param $y i32) (result i32)
(i32.add
- (get_local $x)
- (get_local $y)
+ (local.get $x)
+ (local.get $y)
)
)
(func $no-return (param $x i32)
(drop
(i32.add
- (get_local $x)
- (get_local $x)
+ (local.get $x)
+ (local.get $x)
)
)
)