Skip to content

Commit 53f2627

Browse files
committed
small refactoring
1 parent 59caaa1 commit 53f2627

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/lib/specialize.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ let count = ref 0
5353

5454
let specialize_instr function_arity (acc, free_pc, extra) i =
5555
match i with
56-
| Let (x, Apply { f; args; exact }), loc when (not exact) && Config.Flag.optcall () -> (
56+
| Let (x, Apply { f; args; exact = false }), loc when Config.Flag.optcall () -> (
5757
let n' = List.length args in
5858
match function_arity f with
5959
| None -> i :: acc, free_pc, extra

0 commit comments

Comments
 (0)