Remove $void CPS expression type
[bpt/guile.git] / module / language / cps / renumber.scm
index 4f51b70..4bbeb36 100644 (file)
@@ -1,6 +1,6 @@
 ;;; Continuation-passing style (CPS) intermediate language (IL)
 
-;; Copyright (C) 2014 Free Software Foundation, Inc.
+;; Copyright (C) 2014, 2015 Free Software Foundation, Inc.
 
 ;;;; This library is free software; you can redistribute it and/or
 ;;;; modify it under the terms of the GNU Lesser General Public
        ($continue (relabel k) src ,(visit-exp exp)))))
   (define (visit-exp exp)
     (match exp
-      ((or ($ $void) ($ $const) ($ $prim))
+      ((or ($ $const) ($ $prim))
        exp)
       (($ $closure k nfree)
        (build-cps-exp ($closure (relabel k) nfree)))