diff options
Diffstat (limited to 'test/wasm-only.fromasm.imprecise')
-rw-r--r-- | test/wasm-only.fromasm.imprecise | 23 |
1 files changed, 4 insertions, 19 deletions
diff --git a/test/wasm-only.fromasm.imprecise b/test/wasm-only.fromasm.imprecise index ae68d6a66..11eedc71d 100644 --- a/test/wasm-only.fromasm.imprecise +++ b/test/wasm-only.fromasm.imprecise @@ -221,29 +221,14 @@ (i64.const 0) ) (func $ifValue64 (param $0 i64) (param $1 i64) (result i64) - (if i64 - (i32.wrap/i64 - (get_local $1) - ) - (call $call2 - (get_local $0) - ) - (call $call2 - (get_local $0) - ) + (call $call2 + (get_local $0) ) ) (func $ifValue32 (param $0 i32) (param $1 i32) (result i32) - (if i32 + (call $ifValue32 + (get_local $0) (get_local $1) - (call $ifValue32 - (get_local $0) - (get_local $1) - ) - (call $ifValue32 - (get_local $0) - (get_local $1) - ) ) ) (func $switch64 (param $0 i64) (result i32) |