diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-03-29 15:51:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-29 15:51:17 -0700 |
commit | f44c56c961724312224a13e209b3b6db39ad9d77 (patch) | |
tree | c96dce360267d7baf613763a45bcd848d17bdded /test/merge/fusing.wast.toMerge | |
parent | c5a22baecfdfc2707bcd06b8e9f168348a6afa43 (diff) | |
download | binaryen-f44c56c961724312224a13e209b3b6db39ad9d77.tar.gz binaryen-f44c56c961724312224a13e209b3b6db39ad9d77.tar.bz2 binaryen-f44c56c961724312224a13e209b3b6db39ad9d77.zip |
Delete wasm-merge (#1969)
It is not very useful.
Diffstat (limited to 'test/merge/fusing.wast.toMerge')
-rw-r--r-- | test/merge/fusing.wast.toMerge | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/merge/fusing.wast.toMerge b/test/merge/fusing.wast.toMerge deleted file mode 100644 index 8d17795b1..000000000 --- a/test/merge/fusing.wast.toMerge +++ /dev/null @@ -1,20 +0,0 @@ -(module - (import "env" "memoryBase" (global $memoryBase i32)) - (import "env" "tableBase" (global $tableBase i32)) - (import "env" "memory" (memory $0 256)) - (import "env" "table" (table 0 funcref)) - (import "env" "foo" (func $b-foo)) - (export "bar" (func $bar-func)) - (global $b-global f64 (f64.const 2.14281428)) - (export "bglobal" (global $b-global)) - (import "env" "aglobal" (global $a-global i32)) - (func $b - (call $b-foo) - ) - (func $bar-func - (drop (f64.const 3.14159)) - (drop (global.get $a-global)) - (drop (global.get $b-global)) - ) -) - |