diff options
Diffstat (limited to 'test/lld/standalone-wasm-with-start.wat.out')
-rw-r--r-- | test/lld/standalone-wasm-with-start.wat.out | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/lld/standalone-wasm-with-start.wat.out b/test/lld/standalone-wasm-with-start.wat.out index 1ac0d3d9c..05e70d61a 100644 --- a/test/lld/standalone-wasm-with-start.wat.out +++ b/test/lld/standalone-wasm-with-start.wat.out @@ -16,16 +16,16 @@ (export "stackAlloc" (func $stackAlloc)) (export "stackRestore" (func $stackRestore)) (export "__growWasmMemory" (func $__growWasmMemory)) - (func $_start (; 0 ;) (result i32) + (func $_start (result i32) (nop) ) - (func $foo (; 1 ;) (result i32) + (func $foo (result i32) (nop) ) - (func $stackSave (; 2 ;) (result i32) + (func $stackSave (result i32) (global.get $global$0) ) - (func $stackAlloc (; 3 ;) (param $0 i32) (result i32) + (func $stackAlloc (param $0 i32) (result i32) (local $1 i32) (global.set $global$0 (local.tee $1 @@ -40,12 +40,12 @@ ) (local.get $1) ) - (func $stackRestore (; 4 ;) (param $0 i32) + (func $stackRestore (param $0 i32) (global.set $global$0 (local.get $0) ) ) - (func $__growWasmMemory (; 5 ;) (param $newSize i32) (result i32) + (func $__growWasmMemory (param $newSize i32) (result i32) (memory.grow (local.get $newSize) ) |