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.imprecise20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/hello_world.fromasm.imprecise b/test/hello_world.fromasm.imprecise
index 2c544bd65..2e4a2f12d 100644
--- a/test/hello_world.fromasm.imprecise
+++ b/test/hello_world.fromasm.imprecise
@@ -1,13 +1,13 @@
(module
- (import "env" "memory" (memory $0 256 256))
- (import "env" "table" (table 0 0 anyfunc))
- (import "env" "memoryBase" (global $memoryBase i32))
- (import "env" "tableBase" (global $tableBase i32))
- (export "add" (func $add))
- (func $add (param $0 i32) (param $1 i32) (result i32)
- (i32.add
- (get_local $0)
- (get_local $1)
- )
+ (import "env" "memory" (memory $0 256 256))
+ (import "env" "table" (table 0 0 anyfunc))
+ (import "env" "memoryBase" (global $memoryBase i32))
+ (import "env" "tableBase" (global $tableBase i32))
+ (export "add" (func $add))
+ (func $add (param $0 i32) (param $1 i32) (result i32)
+ (i32.add
+ (get_local $0)
+ (get_local $1)
)
+ )
)