diff options
Diffstat (limited to 'test/hello_world.fromasm.imprecise')
-rw-r--r-- | test/hello_world.fromasm.imprecise | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/hello_world.fromasm.imprecise b/test/hello_world.fromasm.imprecise index 61f6aa452..66f728c52 100644 --- a/test/hello_world.fromasm.imprecise +++ b/test/hello_world.fromasm.imprecise @@ -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) ) ) ) |