- Timestamp:
- 07/15/10 21:43:05 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/generic-class-file/abcl/src/org/armedbear/lisp/compiler-pass2.lisp
r12795 r12806 707 707 (aload *thread*)) 708 708 709 (defun local-variable-p (variable)709 (defun variable-local-p (variable) 710 710 "Return non-NIL if `variable' is a local variable. 711 711 … … 716 716 (defun emit-load-local-variable (variable) 717 717 "Loads a local variable in the top stack position." 718 (aver ( local-variable-p variable))718 (aver (variable-local-p variable)) 719 719 (if (variable-register variable) 720 720 (aload (variable-register variable)) … … 734 734 before the emitted code: the code is 'stack-neutral'." 735 735 (declare (type symbol expected-type)) 736 (unless ( local-variable-p variable)736 (unless (variable-local-p variable) 737 737 (return-from generate-instanceof-type-check-for-variable)) 738 738 (let ((instanceof-class (ecase expected-type
Note: See TracChangeset
for help on using the changeset viewer.