diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-05-17 14:07:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-17 14:07:20 -0700 |
commit | f4fd88496db1a217954abc0509393c9523c3c1d3 (patch) | |
tree | 1e6af286b0f66552ed8d4f8cfa17e43d25307d4f /test/llvm_autogenerated/non-executable-stack.wast | |
parent | a4b7041d3bac69a99048b7e52eba19dc3cad90d9 (diff) | |
download | binaryen-f4fd88496db1a217954abc0509393c9523c3c1d3.tar.gz binaryen-f4fd88496db1a217954abc0509393c9523c3c1d3.tar.bz2 binaryen-f4fd88496db1a217954abc0509393c9523c3c1d3.zip |
Remove llvm_autogenerated tests (#2120)
After s2wasm was removed, these tests don't seem to be used anymore.
Diffstat (limited to 'test/llvm_autogenerated/non-executable-stack.wast')
-rw-r--r-- | test/llvm_autogenerated/non-executable-stack.wast | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/test/llvm_autogenerated/non-executable-stack.wast b/test/llvm_autogenerated/non-executable-stack.wast deleted file mode 100644 index 8ca09e443..000000000 --- a/test/llvm_autogenerated/non-executable-stack.wast +++ /dev/null @@ -1,38 +0,0 @@ -(module - (import "env" "memory" (memory $0 1)) - (table 0 funcref) - (data (i32.const 4) "\10\04\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) - (local.tee $1 - (i32.and - (i32.sub - (i32.load offset=4 - (i32.const 0) - ) - (local.get $0) - ) - (i32.const -16) - ) - ) - ) - (local.get $1) - ) - (func $stackRestore (; 2 ;) (param $0 i32) - (i32.store offset=4 - (i32.const 0) - (local.get $0) - ) - ) -) -;; METADATA: { "asmConsts": {},"staticBump": 1040, "initializers": [], "declares": [], "externs": [], "implementedFunctions": ["_stackSave","_stackAlloc","_stackRestore"], "exports": ["stackSave","stackAlloc","stackRestore"], "invokeFuncs": [] } |