Skip to content
Snippets Groups Projects
Forked from cmucl / cmucl
Source project has a limited visibility.
  • gerd's avatar
    05271223
    (compile nil '(lambda (c) · 05271223
    gerd authored
    	                (flet ((%f16 () (setq c 1)))
    	                  (+ (%f16) (%f16)))))
    	 => assertion failure, c not found in environment
    
    	Found by Paul Dietz (similar cases).
    
    	* src/compiler/envanal.lisp (compute-closure): Don't close
    	over unused variables from sets.  Not really a port from
    	SBCL because I needed to debug this to the point where the
    	cause was clear; SBCL does the same though.
    05271223
    History
    (compile nil '(lambda (c)
    gerd authored
    	                (flet ((%f16 () (setq c 1)))
    	                  (+ (%f16) (%f16)))))
    	 => assertion failure, c not found in environment
    
    	Found by Paul Dietz (similar cases).
    
    	* src/compiler/envanal.lisp (compute-closure): Don't close
    	over unused variables from sets.  Not really a port from
    	SBCL because I needed to debug this to the point where the
    	cause was clear; SBCL does the same though.