guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] branch wip-tailify updated: Fix tailification case for d


From: Andy Wingo
Subject: [Guile-commits] branch wip-tailify updated: Fix tailification case for dynwind
Date: Thu, 20 Jul 2023 06:26:48 -0400

This is an automated email from the git hooks/post-receive script.

wingo pushed a commit to branch wip-tailify
in repository guile.

The following commit(s) were added to refs/heads/wip-tailify by this push:
     new 7bafd85f4 Fix tailification case for dynwind
7bafd85f4 is described below

commit 7bafd85f439f81746fed816a7661b1cf5c3bfa9b
Author: Andy Wingo <wingo@pobox.com>
AuthorDate: Thu Jul 20 12:26:30 2023 +0200

    Fix tailification case for dynwind
---
 module/language/cps/hoot/tailify.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]