Skip to content

Commit 6a4471e

Browse files
committed
fix precedence
1 parent 6d6a8d5 commit 6a4471e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

middle_end/flambda2/to_cmm/to_cmm_static.ml

+2-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,8 @@ let static_const0 env res ~updates (bound_static : Bound_static.Pattern.t)
266266
assert (Arch.size_int = 8);
267267
immutable_unboxed_int_array env res updates Int32 ~symbol ~elts
268268
~to_int64:Int64.of_int32 ~custom_ops_symbol:(fun ~num_elts ->
269-
"caml_unboxed_int32_array_ops", Some (C.custom_ops_size * num_elts mod 2))
269+
( "caml_unboxed_int32_array_ops",
270+
Some (C.custom_ops_size * (num_elts mod 2)) ))
270271
| Block_like symbol, Immutable_int64_array elts ->
271272
immutable_unboxed_int_array env res updates Int64_or_nativeint ~symbol ~elts
272273
~to_int64:Fun.id ~custom_ops_symbol:(fun ~num_elts:_ ->

0 commit comments

Comments
 (0)