diff options
Diffstat (limited to 'test/merge/fusing.wast')
-rw-r--r-- | test/merge/fusing.wast | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/merge/fusing.wast b/test/merge/fusing.wast deleted file mode 100644 index 39b0167e0..000000000 --- a/test/merge/fusing.wast +++ /dev/null @@ -1,18 +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)) - (export "foo" (func $foo-func)) - (import "env" "bar" (func $bar-func)) - (global $a-global i32 (i32.const 0)) - (export "aglobal" (global $a-global)) - (import "env" "bglobal" (global $b-global f64)) - (func $foo-func - (drop (i32.const 1337)) - (call $bar-func) - (drop (global.get $a-global)) - (drop (global.get $b-global)) - ) -) - |