1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

Whoops, fix bug in tree-il choose-compiler

* module/language/tree-il/spec.scm (choose-compiler): Fix spelling of
  "compile-cps" :)
This commit is contained in:
Andy Wingo 2020-05-12 10:12:21 +02:00
parent bebf647abb
commit 9c4c6322f5

View file

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