diff options
Diffstat (limited to 'test/min.fromasm.imprecise')
| -rw-r--r-- | test/min.fromasm.imprecise | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/min.fromasm.imprecise b/test/min.fromasm.imprecise index 6deb6ae67..596ed06cf 100644 --- a/test/min.fromasm.imprecise +++ b/test/min.fromasm.imprecise @@ -2,37 +2,37 @@ (memory 256 256) (export "memory" memory) (export "floats" $floats) - (func $floats (param $f f32) (result f32) - (local $t f32) + (func $floats (param $0 f32) (result f32) + (local $1 f32) (f32.add - (get_local $t) - (get_local $f) + (get_local $1) + (get_local $0) ) ) - (func $neg (param $k i32) (param $p i32) (result f32) + (func $neg (param $0 i32) (param $1 i32) (result f32) (f32.neg (block (i32.store - (get_local $k) - (get_local $p) + (get_local $0) + (get_local $1) ) (f32.load - (get_local $k) + (get_local $0) ) ) ) ) - (func $bitcasts (param $i i32) (param $f f32) + (func $bitcasts (param $0 i32) (param $1 f32) (f32.reinterpret/i32 - (get_local $i) + (get_local $0) ) (f64.promote/f32 (f32.reinterpret/i32 - (get_local $i) + (get_local $0) ) ) (i32.reinterpret/f32 - (get_local $f) + (get_local $1) ) ) (func $ctzzzz (result i32) |
