summaryrefslogtreecommitdiff
path: root/test/dot_s/function-data-sections.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/dot_s/function-data-sections.wast')
-rw-r--r--test/dot_s/function-data-sections.wast10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/dot_s/function-data-sections.wast b/test/dot_s/function-data-sections.wast
index 784e42d97..82aa6f8c9 100644
--- a/test/dot_s/function-data-sections.wast
+++ b/test/dot_s/function-data-sections.wast
@@ -11,16 +11,16 @@
(func $foo
(return)
)
- (func $bar (param $$0 i32) (result i32)
+ (func $bar (param $0 i32) (result i32)
(return
- (get_local $$0)
+ (get_local $0)
)
)
- (func $qux (param $$0 f64) (param $$1 f64) (result f64)
+ (func $qux (param $0 f64) (param $1 f64) (result f64)
(return
(f64.add
- (get_local $$0)
- (get_local $$1)
+ (get_local $0)
+ (get_local $1)
)
)
)