Skip to content

Commit 93e0c72

Browse files
committed
snapshot
1 parent 7bd9255 commit 93e0c72

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
@@ -96751,7 +96751,7 @@ let if_ (a : t) (b : t) (c : t) : t =
9675196751
| Lprim(
9675296752
{primitive = Pnot ; args = [Lprim{primitive = Pintcomp Ceq ; args = [Lvar j; Lconst _] as args; loc}]})
9675396753
when Ident.same i j && eq_approx true_ c
96754-
-> Lprim{primitive = Pintcomp Ceq; args; loc}
96754+
-> Lprim{primitive = Pintcomp Cneq; args; loc}
9675596755
| _ -> Lifthenelse(a,b,c)
9675696756
end
9675796757
| _ -> 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
@@ -372233,7 +372233,7 @@ let if_ (a : t) (b : t) (c : t) : t =
372233372233
| Lprim(
372234372234
{primitive = Pnot ; args = [Lprim{primitive = Pintcomp Ceq ; args = [Lvar j; Lconst _] as args; loc}]})
372235372235
when Ident.same i j && eq_approx true_ c
372236-
-> Lprim{primitive = Pintcomp Ceq; args; loc}
372236+
-> Lprim{primitive = Pintcomp Cneq; args; loc}
372237372237
| _ -> Lifthenelse(a,b,c)
372238372238
end
372239372239
| _ -> Lifthenelse (a,b,c))

0 commit comments

Comments
 (0)