summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2023-07-20 12:26:30 +0200
committerAndy Wingo <wingo@pobox.com>2023-07-20 12:26:30 +0200
commit7bafd85f439f81746fed816a7661b1cf5c3bfa9b (patch)
treea88fd9f1c15a6aa140b96b8c16d958bdb68094bb
parenta5d66b6d6f5802c734129de23ec926f847ffefe6 (diff)
Fix tailification case for dynwindwip-tailify
-rw-r--r--module/language/cps/hoot/tailify.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/language/cps/hoot/tailify.scm b/module/language/cps/hoot/tailify.scm
index 6888019ed..f2b74ba16 100644
--- a/module/language/cps/hoot/tailify.scm
+++ b/module/language/cps/hoot/tailify.scm
@@ -606,7 +606,7 @@ corresponding wind expression."
(bodies (intmap-add bodies kh wind)))
(values exits bodies)))
(($ $kargs _ _ ($ $continue k _ ($ $primcall 'wind)))
- (let ((bodies (intmap-add bodies k wind)))
+ (let ((bodies (intmap-add bodies k label)))
(values exits bodies)))
(($ $kargs _ _ ($ $continue k _ ($ $primcall 'unwind)))
(let* ((exits (intmap-add exits label wind))