diff options
author | Mark H Weaver <mhw@netris.org> | 2011-12-30 23:11:30 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2011-12-30 23:15:57 -0500 |
commit | 3004fe262401f87aa92e24ec69115d9269c0df99 (patch) | |
tree | 315eec240ddad56d7514d174d39c4c758e9d6f61 /module | |
parent | b72ab481cd71d5d72f501d4469ecbdf6892ffb7b (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.scm | 3 |
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) |