File tree 1 file changed +0
-4
lines changed
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -214,8 +214,6 @@ let eval_prim x =
214
214
Some (Float (ldexp f (Targetint. to_int_exn i)))
215
215
(* int32 *)
216
216
| "caml_int32_bits_of_float" , [ Float f ] -> int32 (Int32. bits_of_float f)
217
- | "caml_int32_float_of_bits" , [ Int i ] ->
218
- Some (Float (Int32. float_of_bits (Targetint. to_int32 i)))
219
217
| "caml_int32_float_of_bits" , [ Int32 i ] -> Some (Float (Int32. float_of_bits i))
220
218
| "caml_int32_of_float" , [ Float f ] -> int32 (Int32. of_float f)
221
219
| "caml_int32_to_float" , [ Int32 i ] -> Some (Float (Int32. to_float i))
@@ -241,8 +239,6 @@ let eval_prim x =
241
239
| "caml_nativeint_to_int32" , [ NativeInt i ] -> Some (Int32 i)
242
240
(* nativeint *)
243
241
| "caml_nativeint_bits_of_float" , [ Float f ] -> nativeint (Int32. bits_of_float f)
244
- | "caml_nativeint_float_of_bits" , [ Int i ] ->
245
- Some (Float (Int32. float_of_bits (Targetint. to_int32 i)))
246
242
| "caml_nativeint_float_of_bits" , [ NativeInt i ] ->
247
243
Some (Float (Int32. float_of_bits i))
248
244
| "caml_nativeint_of_float" , [ Float f ] -> nativeint (Int32. of_float f)
You can’t perform that action at this time.
0 commit comments