Ignore:
Timestamp:
08/24/09 19:21:13 (14 years ago)
Author:
ehuelsmann
Message:

Convert LABELS BLOCK-NODEs to LABELS-NODEs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/compiler-pass1.lisp

    r12115 r12116  
    671671         (*current-compiland* (local-function-compiland local-function)))
    672672     (p1-compiland (local-function-compiland local-function))))
    673        (let* ((block (make-block-node '(LABELS)))
     673       (let* ((block (make-labels-node))
    674674              (*blocks* (cons block *blocks*))
    675675              (body (cddr form))
    676676              (*visible-variables* *visible-variables*))
    677          (setf (block-free-specials block)
     677         (setf (labels-free-specials block)
    678678               (process-declarations-for-vars body nil block))
    679          (dolist (special (block-free-specials block))
     679         (dolist (special (labels-free-specials block))
    680680           (push special *visible-variables*))
    681          (setf (block-form block)
     681         (setf (labels-form block)
    682682               (list* (car form) local-functions (p1-body (cddr form))))
    683683         block))))
Note: See TracChangeset for help on using the changeset viewer.