diff options
Diffstat (limited to 'test/dot_s/function-data-sections.wast')
-rw-r--r-- | test/dot_s/function-data-sections.wast | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/dot_s/function-data-sections.wast b/test/dot_s/function-data-sections.wast index 7cbd428bc..aea8a9b85 100644 --- a/test/dot_s/function-data-sections.wast +++ b/test/dot_s/function-data-sections.wast @@ -10,15 +10,15 @@ (export "foo" (func $foo)) (export "bar" (func $bar)) (export "qux" (func $qux)) - (func $foo + (func $foo (; 0 ;) (return) ) - (func $bar (param $0 i32) (result i32) + (func $bar (; 1 ;) (param $0 i32) (result i32) (return (get_local $0) ) ) - (func $qux (param $0 f64) (param $1 f64) (result f64) + (func $qux (; 2 ;) (param $0 f64) (param $1 f64) (result f64) (return (f64.add (get_local $0) @@ -26,12 +26,12 @@ ) ) ) - (func $stackSave (result i32) + (func $stackSave (; 3 ;) (result i32) (i32.load offset=4 (i32.const 0) ) ) - (func $stackAlloc (param $0 i32) (result i32) + (func $stackAlloc (; 4 ;) (param $0 i32) (result i32) (local $1 i32) (set_local $1 (i32.load offset=4 @@ -50,7 +50,7 @@ ) (get_local $1) ) - (func $stackRestore (param $0 i32) + (func $stackRestore (; 5 ;) (param $0 i32) (i32.store offset=4 (i32.const 0) (get_local $0) |