guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] branch master updated: Fix baseline compilation of let-v


From: Andy Wingo
Subject: [Guile-commits] branch master updated: Fix baseline compilation of let-values and prompt
Date: Mon, 04 May 2020 16:38:21 -0400

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

wingo pushed a commit to branch master
in repository guile.

The following commit(s) were added to refs/heads/master by this push:
     new 7a1b7bc  Fix baseline compilation of let-values and prompt
7a1b7bc is described below

commit 7a1b7bc48596207477c24a93368b431bd0746dcb
Author: Andy Wingo <address@hidden>
AuthorDate: Mon May 4 22:37:49 2020 +0200

    Fix baseline compilation of let-values and prompt
    
    * module/language/tree-il/compile-bytecode.scm (compile-closure): Fix
      fold invocation for visit-values-handler.
---
 module/language/tree-il/compile-bytecode.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/module/language/tree-il/compile-bytecode.scm 
b/module/language/tree-il/compile-bytecode.scm
index e2eaabf..f9c7221 100644
--- a/module/language/tree-il/compile-bytecode.scm
+++ b/module/language/tree-il/compile-bytecode.scm
@@ -819,7 +819,7 @@ in the frame with for the lambda-case clause @var{clause}."
                   (when (env-boxed? env)
                     (emit-box asm (env-idx env) (env-idx env)))
                   env))
-              names syms env))
+              env names syms))
       (let ((proc-slot (stack-height env))
             (nreq (length req)))
         (unless (and rest (zero? nreq))



reply via email to

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