Changeset 11874
- Timestamp:
- 05/15/09 20:18:09 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/compiler-pass2.lisp
r11873 r11874 4918 4918 (defknown p2-flet (t t t) t) 4919 4919 (defun p2-flet (form target representation) 4920 ;; FIXME What if we're called with a non-NIL representation?4921 (declare (ignore representation))4922 4920 (let ((*local-functions* *local-functions*) 4923 4921 (*visible-variables* *visible-variables*) … … 4932 4930 (push variable *visible-variables*)))) 4933 4931 (dolist (special (process-special-declarations body)) 4934 (push (make-variable :name special :special-p t) 4935 *visible-variables*)) 4936 (do ((forms body (cdr forms))) 4937 ((null forms)) 4938 (compile-form (car forms) (if (cdr forms) nil target) nil)))) 4932 (push (make-variable :name special :special-p t) *visible-variables*)) 4933 (compile-progn-body body target representation))) 4939 4934 4940 4935 (defknown p2-labels (t t t) t) … … 4955 4950 (p2-labels-process-compiland local-function)) 4956 4951 (dolist (special (process-special-declarations body)) 4957 (push (make-variable :name special :special-p t) 4958 *visible-variables*)) 4959 (do ((forms body (cdr forms))) 4960 ((null forms)) 4961 (compile-form (car forms) (if (cdr forms) nil 'stack) nil)) 4962 (fix-boxing representation nil) 4963 (emit-move-from-stack target representation))) 4952 (push (make-variable :name special :special-p t) *visible-variables*)) 4953 (compile-progn-body body target representation))) 4964 4954 4965 4955 (defun p2-lambda (compiland target)
Note: See TracChangeset
for help on using the changeset viewer.