diff options
author | Sam Clegg <sbc@chromium.org> | 2022-08-02 15:41:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-02 15:41:06 -0700 |
commit | 3d3350d789d909445c8d8d03545c50bc0ae416ef (patch) | |
tree | b044afd8490166160889b14f5bd6406a0708f606 /test/lld/hello_world.wat | |
parent | deb40b7cd6d02adc14c09782b2211e2d68c612b1 (diff) | |
download | binaryen-3d3350d789d909445c8d8d03545c50bc0ae416ef.tar.gz binaryen-3d3350d789d909445c8d8d03545c50bc0ae416ef.tar.bz2 binaryen-3d3350d789d909445c8d8d03545c50bc0ae416ef.zip |
Re-run scripts/test/generate_lld_tests.py. NFC (#4861)
Diffstat (limited to 'test/lld/hello_world.wat')
-rw-r--r-- | test/lld/hello_world.wat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lld/hello_world.wat b/test/lld/hello_world.wat index 71f464ae6..335bcb865 100644 --- a/test/lld/hello_world.wat +++ b/test/lld/hello_world.wat @@ -1,13 +1,13 @@ (module + (type $i32_=>_i32 (func (param i32) (result i32))) (type $none_=>_none (func)) (type $none_=>_i32 (func (result i32))) - (type $i32_=>_i32 (func (param i32) (result i32))) (type $i32_i32_=>_i32 (func (param i32 i32) (result i32))) (import "env" "puts" (func $puts (param i32) (result i32))) + (global $__stack_pointer (mut i32) (i32.const 66128)) (memory $0 2) (data $.rodata (i32.const 568) "Hello, world\00") (table $0 1 1 funcref) - (global $__stack_pointer (mut i32) (i32.const 66128)) (export "memory" (memory $0)) (export "__wasm_call_ctors" (func $__wasm_call_ctors)) (export "main" (func $main)) |