diff options
author | Andy Wingo <wingo@pobox.com> | 2020-05-04 22:37:49 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2020-05-04 22:37:49 +0200 |
commit | 7a1b7bc48596207477c24a93368b431bd0746dcb (patch) | |
tree | a11533dc9fdb269baef34c689e95a528e24fae4f /module/language/tree-il/compile-bytecode.scm | |
parent | cfdaf35d7380c790c152762a5b155a8dde8ddf83 (diff) | |
download | guile-7a1b7bc48596207477c24a93368b431bd0746dcb.tar.gz |
Fix baseline compilation of let-values and prompt
* module/language/tree-il/compile-bytecode.scm (compile-closure): Fix
fold invocation for visit-values-handler.
Diffstat (limited to 'module/language/tree-il/compile-bytecode.scm')
-rw-r--r-- | module/language/tree-il/compile-bytecode.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/language/tree-il/compile-bytecode.scm b/module/language/tree-il/compile-bytecode.scm index e2eaabfcc..f9c7221e5 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)) |