summaryrefslogtreecommitdiff
path: root/test/min.fromasm.imprecise
diff options
context:
space:
mode:
Diffstat (limited to 'test/min.fromasm.imprecise')
-rw-r--r--test/min.fromasm.imprecise32
1 files changed, 13 insertions, 19 deletions
diff --git a/test/min.fromasm.imprecise b/test/min.fromasm.imprecise
index 26501d4a5..6deb6ae67 100644
--- a/test/min.fromasm.imprecise
+++ b/test/min.fromasm.imprecise
@@ -4,24 +4,20 @@
(export "floats" $floats)
(func $floats (param $f f32) (result f32)
(local $t f32)
- (return
- (f32.add
- (get_local $t)
- (get_local $f)
- )
+ (f32.add
+ (get_local $t)
+ (get_local $f)
)
)
(func $neg (param $k i32) (param $p i32) (result f32)
- (return
- (f32.neg
- (block
- (i32.store
- (get_local $k)
- (get_local $p)
- )
- (f32.load
- (get_local $k)
- )
+ (f32.neg
+ (block
+ (i32.store
+ (get_local $k)
+ (get_local $p)
+ )
+ (f32.load
+ (get_local $k)
)
)
)
@@ -40,10 +36,8 @@
)
)
(func $ctzzzz (result i32)
- (return
- (i32.ctz
- (i32.const 4660)
- )
+ (i32.ctz
+ (i32.const 4660)
)
)
)