PPC micro-optimization of COPY-MORE-ARG VOP. Use LWZU/STWU to
avoid ADDI instructions.
(emit-label loop)
;; *--dst = *--src, --count
- (inst addi src src (- n-word-bytes))
(inst addic. count count (- (fixnumize 1)))
- (loadw temp src)
- (inst addi dst dst (- n-word-bytes))
- (storew temp dst)
+ (inst lwzu temp src (- n-word-bytes))
+ (inst stwu temp dst (- n-word-bytes))
(inst bgt loop)
(emit-label do-regs)
;;; 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".)
-"0.9.9.29"
+"0.9.9.30"