- Timestamp:
- Nov 25, 2007, 8:12:29 PM (17 years ago)
- File:
-
- 1 edited
-
branches/working-0711/ccl/compiler/optimizers.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/working-0711/ccl/compiler/optimizers.lisp
r7624 r7750 781 781 (symbolp (cadr class)) 782 782 (null (cddr class))) 783 `(%make-instance (load-time-value (find-class-cell ,class t)) 784 ,@initargs) 783 (let* ((cell (gensym))) 784 `(let* ((,cell (load-time-value (find-class-cell ,class t)))) 785 (funcall (class-cell-instantiate ,cell) ,cell ,@initargs))) 785 786 call)) 786 787
Note:
See TracChangeset
for help on using the changeset viewer.
