Skip to content

Commit

Permalink
Merge pull request #231 from LPCIC/fixup-226
Browse files Browse the repository at this point in the history
fixup 226
  • Loading branch information
gares authored May 24, 2024
2 parents cbcd669 + a027651 commit 8d02afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime.ml
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ let rec move ~argsdepth e ?avoid ~from ~to_ t =
if depth == 0 then deref_appuv ?avoid ~from:vardepth ~to_ args t
else maux empty_env depth (deref_appuv ~from:vardepth ~to_:(from+depth) args t)
| Arg (i, argsno) when e.(i) != C.dummy ->
if from = argsdepth then deref_uv ?avoid ~from:argsdepth ~to_:(to_+depth) argsno e.(i)
if to_ = argsdepth then deref_uv ?avoid ~from:argsdepth ~to_:(to_+depth) argsno e.(i)
else
let args = C.mkinterval from argsno 0 in
let args =
Expand Down

0 comments on commit 8d02afc

Please sign in to comment.