summaryrefslogtreecommitdiff
path: root/test/hello_world.fromasm.imprecise
diff options
context:
space:
mode:
Diffstat (limited to 'test/hello_world.fromasm.imprecise')
-rw-r--r--test/hello_world.fromasm.imprecise10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/hello_world.fromasm.imprecise b/test/hello_world.fromasm.imprecise
deleted file mode 100644
index d2e0f0ff9..000000000
--- a/test/hello_world.fromasm.imprecise
+++ /dev/null
@@ -1,10 +0,0 @@
-(module
- (type $i32_i32_=>_i32 (func (param i32 i32) (result i32)))
- (export "add" (func $add))
- (func $add (; has Stack IR ;) (param $0 i32) (param $1 i32) (result i32)
- (i32.add
- (local.get $0)
- (local.get $1)
- )
- )
-)