Skip to content

Commit

Permalink
1.0.4.97: Oops. Fix bug introduced in x86 vop if-eq in 1.0.4.73.
Browse files Browse the repository at this point in the history
  • Loading branch information
lisphacker committed Apr 17, 2007
1 parent d1eb2bf commit 2b6833e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/compiler/x86/pred.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
(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))
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
;;; 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"

0 comments on commit 2b6833e

Please sign in to comment.