diff options
Diffstat (limited to 'test/hello_world.fromasm.imprecise')
-rw-r--r-- | test/hello_world.fromasm.imprecise | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/test/hello_world.fromasm.imprecise b/test/hello_world.fromasm.imprecise index 435e41a60..61f6aa452 100644 --- a/test/hello_world.fromasm.imprecise +++ b/test/hello_world.fromasm.imprecise @@ -3,11 +3,9 @@ (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) - ) + (i32.add + (get_local $x) + (get_local $y) ) ) ) |