diff options
Diffstat (limited to 'test/dot_s/lcomm-in-text-segment.wast')
-rw-r--r-- | test/dot_s/lcomm-in-text-segment.wast | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/test/dot_s/lcomm-in-text-segment.wast b/test/dot_s/lcomm-in-text-segment.wast deleted file mode 100644 index a4478acd6..000000000 --- a/test/dot_s/lcomm-in-text-segment.wast +++ /dev/null @@ -1,38 +0,0 @@ -(module - (import "env" "memory" (memory $0 1)) - (table 0 anyfunc) - (data (i32.const 20) "\10\00\00\00") - (export "stackSave" (func $stackSave)) - (export "stackAlloc" (func $stackAlloc)) - (export "stackRestore" (func $stackRestore)) - (func $stackSave (; 0 ;) (result i32) - (i32.load offset=4 - (i32.const 0) - ) - ) - (func $stackAlloc (; 1 ;) (param $0 i32) (result i32) - (local $1 i32) - (i32.store offset=4 - (i32.const 0) - (tee_local $1 - (i32.and - (i32.sub - (i32.load offset=4 - (i32.const 0) - ) - (get_local $0) - ) - (i32.const -16) - ) - ) - ) - (get_local $1) - ) - (func $stackRestore (; 2 ;) (param $0 i32) - (i32.store offset=4 - (i32.const 0) - (get_local $0) - ) - ) -) -;; METADATA: { "asmConsts": {},"staticBump": 24, "initializers": [], "declares": [], "externs": [], "implementedFunctions": ["_stackSave","_stackAlloc","_stackRestore"], "exports": ["stackSave","stackAlloc","stackRestore"], "invokeFuncs": [] } |