Fix comment summarizing allocation table
authorMark H Weaver <mhw@netris.org>
Sat, 31 Dec 2011 04:11:30 +0000 (23:11 -0500)
committerMark H Weaver <mhw@netris.org>
Sat, 31 Dec 2011 04:15:57 +0000 (23:15 -0500)
* module/language/tree-il/analyze.scm (analyze-lexicals): Fix comment,
  which describes the compiler's allocation table, to match reality.

module/language/tree-il/analyze.scm

index 990994a..0470190 100644 (file)
       (else '())))
   
   ;; allocation: sym -> {lambda -> address}
-  ;;             lambda -> (nlocs labels . free-locs)
+  ;;             lambda -> (labels . free-locs)
+  ;;             lambda-case -> (gensym . nlocs)
   (define allocation (make-hash-table))
   
   (define (allocate! x proc n)