(when lra-label
(inst compute-code-from-lra code-tn code-tn lra-label temp))
- (inst addu csp-tn csp-tn 4)
+ (inst addu csp-tn csp-tn n-word-bytes)
(storew (first *register-arg-tns*) csp-tn -1)
- (inst addu start csp-tn -4)
+ (inst addu start csp-tn (- n-word-bytes))
(inst li count (fixnumize 1))
(emit-label done)
(inst addu csp-tn count)
LOOP
(inst lw temp src)
- (inst addu src 4)
- (inst addu dst 4)
+ (inst addu src n-word-bytes)
+ (inst addu dst n-word-bytes)
(inst bne dst csp-tn loop)
- (inst sw temp dst -4)
+ (inst sw temp dst (- n-word-bytes))
DONE))
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.23.26"
+"1.0.23.27"