1.0.29.54: Inline unboxed constants on x86[-64]
[sbcl.git] / src / compiler / generic / vm-tran.lisp
index 4614221..22f075a 100644 (file)
      (values)))
 \f
 ;;;; transforms for EQL of floating point values
-#!-x86-64
+#!-float-eql-vops
 (deftransform eql ((x y) (single-float single-float))
   '(= (single-float-bits x) (single-float-bits y)))
 
-#!-x86-64
+#!-float-eql-vops
 (deftransform eql ((x y) (double-float double-float))
   '(and (= (double-float-low-bits x) (double-float-low-bits y))
         (= (double-float-high-bits x) (double-float-high-bits y))))