diff options
Diffstat (limited to 'test/min.fromasm.imprecise')
-rw-r--r-- | test/min.fromasm.imprecise | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/min.fromasm.imprecise b/test/min.fromasm.imprecise index aabb1e3a5..37a1416ff 100644 --- a/test/min.fromasm.imprecise +++ b/test/min.fromasm.imprecise @@ -9,14 +9,14 @@ (export "neg" (func $legalstub$neg)) (export "bitcasts" (func $legalstub$bitcasts)) (export "ctzzzz" (func $ctzzzz)) - (func $floats (param $0 f32) (result f32) + (func $floats (; 0 ;) (param $0 f32) (result f32) (local $1 f32) (f32.add (get_local $1) (get_local $0) ) ) - (func $neg (param $0 i32) (param $1 i32) (result f32) + (func $neg (; 1 ;) (param $0 i32) (param $1 i32) (result f32) (i32.store (get_local $0) (get_local $1) @@ -27,19 +27,19 @@ ) ) ) - (func $bitcasts (param $0 i32) (param $1 f32) + (func $bitcasts (; 2 ;) (param $0 i32) (param $1 f32) (nop) ) - (func $ctzzzz (result i32) + (func $ctzzzz (; 3 ;) (result i32) (i32.const 2) ) - (func $ub (result i32) + (func $ub (; 4 ;) (result i32) (drop (call $ub) ) (get_global $M) ) - (func $legalstub$floats (param $0 f64) (result f64) + (func $legalstub$floats (; 5 ;) (param $0 f64) (result f64) (f64.promote/f32 (call $floats (f32.demote/f64 @@ -48,7 +48,7 @@ ) ) ) - (func $legalstub$neg (param $0 i32) (param $1 i32) (result f64) + (func $legalstub$neg (; 6 ;) (param $0 i32) (param $1 i32) (result f64) (f64.promote/f32 (call $neg (get_local $0) @@ -56,7 +56,7 @@ ) ) ) - (func $legalstub$bitcasts (param $0 i32) (param $1 f64) + (func $legalstub$bitcasts (; 7 ;) (param $0 i32) (param $1 f64) (call $bitcasts (get_local $0) (f32.demote/f64 |