@@ -116,12 +116,12 @@ type t =
116
116
(* size of the nth dimension of a big array *)
117
117
| Pbigarraydim of int
118
118
(* load/set 16,32,64 bits from a string: (unsafe)*)
119
- | Pstring_load_16 of bool
119
+ (* | Pstring_load_16 of bool
120
120
| Pstring_load_32 of bool
121
- | Pstring_load_64 of bool
122
- | Pstring_set_16 of bool
121
+ | Pstring_load_64 of bool *)
122
+ (* | Pstring_set_16 of bool
123
123
| Pstring_set_32 of bool
124
- | Pstring_set_64 of bool
124
+ | Pstring_set_64 of bool *)
125
125
(* load/set 16,32,64 bits from a
126
126
(char, int8_unsigned_elt, c_layout) Bigarray.Array1.t : (unsafe) *)
127
127
| Pbigstring_load_16 of bool
@@ -315,12 +315,12 @@ let eq_primitive_approx ( lhs : t) (rhs : t) =
315
315
| Pcvtbint (boxed_integer , boxed_integer1 ) -> (match rhs with Pcvtbint (boxed_integer10 , boxed_integer11 ) -> Lam_compat. eq_boxed_integer boxed_integer boxed_integer10 && Lam_compat. eq_boxed_integer boxed_integer1 boxed_integer11 | _ -> false )
316
316
| Pbintcomp (boxed_integer , comparison ) -> (match rhs with Pbintcomp (boxed_integer1 , comparison1 ) -> Lam_compat. eq_boxed_integer boxed_integer boxed_integer1 && Lam_compat. eq_comparison comparison comparison1 | _ -> false )
317
317
| Pbigarraydim dim -> (match rhs with Pbigarraydim dim1 -> dim = dim1 | _ -> false )
318
- | Pstring_load_16 str -> (match rhs with Pstring_load_16 str1 -> str = str1 | _ -> false )
318
+ (* | Pstring_load_16 str -> (match rhs with Pstring_load_16 str1 -> str = str1 | _ -> false )
319
319
| Pstring_load_32 b -> (match rhs with Pstring_load_32 b1 -> b = b1 | _ -> false )
320
- | Pstring_load_64 b -> (match rhs with Pstring_load_64 b1 -> b = b1 | _ -> false )
321
- | Pstring_set_16 b -> (match rhs with Pstring_set_16 b1 -> b = b1 | _ -> false )
320
+ | Pstring_load_64 b -> (match rhs with Pstring_load_64 b1 -> b = b1 | _ -> false ) *)
321
+ (* | Pstring_set_16 b -> (match rhs with Pstring_set_16 b1 -> b = b1 | _ -> false )
322
322
| Pstring_set_32 b -> (match rhs with Pstring_set_32 b1 -> b = b1 | _ -> false )
323
- | Pstring_set_64 b -> (match rhs with Pstring_set_64 b1 -> b = b1 | _ -> false )
323
+ | Pstring_set_64 b -> (match rhs with Pstring_set_64 b1 -> b = b1 | _ -> false ) *)
324
324
| Pbigstring_load_16 b -> (match rhs with Pbigstring_load_16 b1 -> b = b1 | _ -> false )
325
325
| Pbigstring_load_32 b -> (match rhs with Pbigstring_load_32 b1 -> b = b1 | _ -> false )
326
326
| Pbigstring_load_64 b -> (match rhs with Pbigstring_load_64 b1 -> b = b1 | _ -> false )
0 commit comments