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.imprecise13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/hello_world.fromasm.imprecise b/test/hello_world.fromasm.imprecise
new file mode 100644
index 000000000..435e41a60
--- /dev/null
+++ b/test/hello_world.fromasm.imprecise
@@ -0,0 +1,13 @@
+(module
+ (memory 256 256)
+ (export "memory" memory)
+ (export "add" $add)
+ (func $add (param $x i32) (param $y i32) (result i32)
+ (return
+ (i32.add
+ (get_local $x)
+ (get_local $y)
+ )
+ )
+ )
+)