summaryrefslogtreecommitdiff
path: root/module
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2011-12-30 23:11:30 -0500
committerMark H Weaver <mhw@netris.org>2011-12-30 23:15:57 -0500
commit3004fe262401f87aa92e24ec69115d9269c0df99 (patch)
tree315eec240ddad56d7514d174d39c4c758e9d6f61 /module
parentb72ab481cd71d5d72f501d4469ecbdf6892ffb7b (diff)
Fix comment summarizing allocation table
* module/language/tree-il/analyze.scm (analyze-lexicals): Fix comment, which describes the compiler's allocation table, to match reality.
Diffstat (limited to 'module')
-rw-r--r--module/language/tree-il/analyze.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/language/tree-il/analyze.scm b/module/language/tree-il/analyze.scm
index 990994a1e..047019049 100644
--- a/module/language/tree-il/analyze.scm
+++ b/module/language/tree-il/analyze.scm
@@ -359,7 +359,8 @@
(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)