mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-11 14:21:10 +02:00
Fix verify-cps
* module/language/cps/verify.scm (verify-cps): Fix. Thanks to Steven H. Margolis for the note. Fixes bug #19389.
This commit is contained in:
parent
e7097386cb
commit
15e4746f17
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
;;; Continuation-passing style (CPS) intermediate language (IL)
|
;;; Continuation-passing style (CPS) intermediate language (IL)
|
||||||
|
|
||||||
;; Copyright (C) 2013, 2014 Free Software Foundation, Inc.
|
;; Copyright (C) 2013, 2014, 2015 Free Software Foundation, Inc.
|
||||||
|
|
||||||
;;;; This library is free software; you can redistribute it and/or
|
;;;; This library is free software; you can redistribute it and/or
|
||||||
;;;; modify it under the terms of the GNU Lesser General Public
|
;;;; modify it under the terms of the GNU Lesser General Public
|
||||||
|
@ -129,7 +129,7 @@
|
||||||
(match fun
|
(match fun
|
||||||
(($ $fun (free ...) entry)
|
(($ $fun (free ...) entry)
|
||||||
(for-each (cut check-var <> v-env) free)
|
(for-each (cut check-var <> v-env) free)
|
||||||
(visit-entry '() v-env))
|
(visit-entry entry '() v-env))
|
||||||
(_
|
(_
|
||||||
(error "unexpected $fun" fun))))
|
(error "unexpected $fun" fun))))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue