Changes between Initial Version and Version 2 of Ticket #1221


Ignore:
Timestamp:
10/13/15 21:00:04 (9 years ago)
Author:
sjamaan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1221 – Description

    initial v2  
    88  (ir-macro-transformer
    99    (lambda (i r c)
    10      `(begin ,@(list-tabulate 1000 (lambda (x) `(define ,(gensym) (quote ,(make-vector 1000)))))))))
     10     `(begin
     11        ,@(list-tabulate
     12            1000
     13            (lambda (x)
     14              `(define ,(gensym) (quote ,(make-vector 1000)))))))))
    1115
    1216(generate-literals)
    1317}}}
     18
     19This happens with vectors as well as lists (but not strings, because those are allocated statically with {{{malloc()}}})