Skip to content

Commit 8843a98

Browse files
committed
small refactoring
1 parent e5d50a1 commit 8843a98

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
@@ -51,7 +51,7 @@ let function_arity info x =
5151

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

0 commit comments

Comments
 (0)