diff options
Diffstat (limited to 'test/unit.fromasm.imprecise')
-rw-r--r-- | test/unit.fromasm.imprecise | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/test/unit.fromasm.imprecise b/test/unit.fromasm.imprecise index 06ab40915..d0d98452f 100644 --- a/test/unit.fromasm.imprecise +++ b/test/unit.fromasm.imprecise @@ -474,13 +474,12 @@ ) (func $smallIf (block $do-once$0 - (drop - (if - (i32.const 2) + (if + (i32.const 2) + (drop (call $lb (i32.const 3) ) - (br $do-once$0) ) ) ) @@ -526,21 +525,18 @@ ) (func $breakThroughMany (param $0 i32) (block $label$break$L1 - (drop - (if - (get_local $0) - (loop $while-in$2 - (br_if $label$break$L1 - (i32.eqz - (get_local $0) - ) - ) - (call $zeroInit - (i32.const 0) + (if + (get_local $0) + (loop $while-in$2 + (br_if $label$break$L1 + (i32.eqz + (get_local $0) ) - (br $while-in$2) ) - (i32.const 1337) + (call $zeroInit + (i32.const 0) + ) + (br $while-in$2) ) ) ) |