(y-val (encode-value-if-immediate y)))
(cond
;; Shorter instruction sequences for these two cases.
- ((eql 0 y-val) (inst test x x))
- ((eql 0 x-val) (inst test y y))
+ ((and (eql 0 y-val) (sc-is x any-reg descriptor-reg)) (inst test x x))
+ ((and (eql 0 x-val) (sc-is y any-reg descriptor-reg)) (inst test y y))
;; An encoded value (literal integer) has to be the second argument.
((sc-is x immediate) (inst cmp y x-val))
;;; 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.4.96"
+"1.0.4.97"