diff --git a/compiler/x86/arith.lisp b/compiler/x86/arith.lisp
index 774a9880043b60e6dfd8fee992773a26389634f4..6921e4a7afff609c3b29ff6553b8c856aaedbe7d 100644
--- a/compiler/x86/arith.lisp
+++ b/compiler/x86/arith.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/arith.lisp,v 1.10 1998/02/19 19:34:38 dtc Exp $")
+ "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/arith.lisp,v 1.11 1999/11/11 15:33:55 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -924,7 +924,7 @@
   (:info target not-p y)
   (:translate eql)
   (:generator 2
-    (cond ((and (sc-is x any-reg) (zerop y))
+    (cond ((and (sc-is x any-reg descriptor-reg) (zerop y))
 	   (inst test x x))  ; Smaller instruction
 	  (t
 	   (inst cmp x (fixnum y))))