File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
middle_end/flambda2/terms Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,15 +92,15 @@ let free_names = function
92
92
| Push { exn_handler } | Pop { exn_handler; raise_kind = _ } ->
93
93
Name_occurrences. singleton_continuation_in_trap_action exn_handler
94
94
95
- let apply_renaming t perm =
95
+ let apply_renaming t renaming =
96
96
match t with
97
97
| Push { exn_handler } ->
98
- let exn_handler' = Renaming. apply_continuation perm exn_handler in
98
+ let exn_handler' = Renaming. apply_continuation renaming exn_handler in
99
99
if exn_handler == exn_handler'
100
100
then t
101
101
else Push { exn_handler = exn_handler' }
102
102
| Pop { exn_handler; raise_kind } ->
103
- let exn_handler' = Renaming. apply_continuation perm exn_handler in
103
+ let exn_handler' = Renaming. apply_continuation renaming exn_handler in
104
104
if exn_handler == exn_handler'
105
105
then t
106
106
else Pop { exn_handler = exn_handler'; raise_kind }
You can’t perform that action at this time.
0 commit comments