[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] branch master updated: Whoops, fix bug in tree-il choose
From: |
Andy Wingo |
Subject: |
[Guile-commits] branch master updated: Whoops, fix bug in tree-il choose-compiler |
Date: |
Tue, 12 May 2020 04:13:09 -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 9c4c632 Whoops, fix bug in tree-il choose-compiler
9c4c632 is described below
commit 9c4c6322f56c2a2c89a7a804959c464b4b857765
Author: Andy Wingo <address@hidden>
AuthorDate: Tue May 12 10:12:21 2020 +0200
Whoops, fix bug in tree-il choose-compiler
* module/language/tree-il/spec.scm (choose-compiler): Fix spelling of
"compile-cps" :)
---
module/language/tree-il/spec.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/module/language/tree-il/spec.scm b/module/language/tree-il/spec.scm
index 169f5a0..511a2e2 100644
--- a/module/language/tree-il/spec.scm
+++ b/module/language/tree-il/spec.scm
@@ -43,7 +43,7 @@
(if (match (memq #:cps? opts)
((_ cps? . _) cps?)
(#f (<= 1 optimization-level)))
- (cons 'cps (load-compiler 'compile-bytecode))
+ (cons 'cps (load-compiler 'compile-cps))
(cons 'bytecode (load-compiler 'compile-bytecode))))
(define-language tree-il
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Guile-commits] branch master updated: Whoops, fix bug in tree-il choose-compiler,
Andy Wingo <=