summaryrefslogtreecommitdiff
path: root/test/hello_world.fromasm
diff options
context:
space:
mode:
Diffstat (limited to 'test/hello_world.fromasm')
-rw-r--r--test/hello_world.fromasm6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/hello_world.fromasm b/test/hello_world.fromasm
index 61f6aa452..66f728c52 100644
--- a/test/hello_world.fromasm
+++ b/test/hello_world.fromasm
@@ -2,10 +2,10 @@
(memory 256 256)
(export "memory" memory)
(export "add" $add)
- (func $add (param $x i32) (param $y i32) (result i32)
+ (func $add (param $0 i32) (param $1 i32) (result i32)
(i32.add
- (get_local $x)
- (get_local $y)
+ (get_local $0)
+ (get_local $1)
)
)
)