summaryrefslogtreecommitdiff
path: root/test/merge/fusing.wast.toMerge
diff options
context:
space:
mode:
Diffstat (limited to 'test/merge/fusing.wast.toMerge')
-rw-r--r--test/merge/fusing.wast.toMerge20
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))
- )
-)
-