Skip to content

Commit 9582edd

Browse files
committed
snapshot
1 parent 78e0e18 commit 9582edd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/4.06.1/unstable/js_compiler.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95430,7 +95430,7 @@ let if_ (a : t) (b : t) (c : t) : t =
9543095430
| Lprim(
9543195431
{primitive = Pnot ; args = [Lprim{primitive = Pintcomp Ceq ; args = [Lvar j; Lconst _] as args; loc}]})
9543295432
when Ident.same i j && eq_approx true_ c
95433-
-> Lprim{primitive = Pintcomp Ceq; args; loc}
95433+
-> Lprim{primitive = Pintcomp Cneq; args; loc}
9543495434
| _ -> Lifthenelse(a,b,c)
9543595435
end
9543695436
| _ -> Lifthenelse (a,b,c))

lib/4.06.1/whole_compiler.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370881,7 +370881,7 @@ let if_ (a : t) (b : t) (c : t) : t =
370881370881
| Lprim(
370882370882
{primitive = Pnot ; args = [Lprim{primitive = Pintcomp Ceq ; args = [Lvar j; Lconst _] as args; loc}]})
370883370883
when Ident.same i j && eq_approx true_ c
370884-
-> Lprim{primitive = Pintcomp Ceq; args; loc}
370884+
-> Lprim{primitive = Pintcomp Cneq; args; loc}
370885370885
| _ -> Lifthenelse(a,b,c)
370886370886
end
370887370887
| _ -> Lifthenelse (a,b,c))

0 commit comments

Comments
 (0)