- Timestamp:
- 08/06/10 22:37:16 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/generic-class-file/abcl/src/org/armedbear/lisp/compiler-pass2.lisp
r12867 r12868 928 928 (declare (type (unsigned-byte 16) i)) 929 929 (let ((instruction (aref code i))) 930 (when (branch- opcode-p (instruction-opcode instruction))930 (when (branch-p (instruction-opcode instruction)) 931 931 (let ((label (car (instruction-args instruction)))) 932 932 (set label marker))))) … … 1078 1078 (setf changed-p (or (optimize-3) changed-p)) 1079 1079 (if changed-p 1080 (setf *code* delete-unreachable-code *code*)1080 (setf *code* (delete-unreachable-code *code*)) 1081 1081 (multiple-value-setq 1082 1082 (*code* changed-p) … … 1113 1113 (declare (type (unsigned-byte 16) i)) 1114 1114 (let ((instruction (aref code i))) 1115 (when (branch- opcode-p (instruction-opcode instruction))1115 (when (branch-p (instruction-opcode instruction)) 1116 1116 (let* ((label (car (instruction-args instruction))) 1117 1117 (offset (- (the (unsigned-byte 16) (symbol-value (the symbol label))) index)))
Note: See TracChangeset
for help on using the changeset viewer.