0.9.2.43:
[sbcl.git] / src / compiler / alpha / pred.lisp
index d8296b7..88e5fa7 100644 (file)
@@ -25,7 +25,7 @@
 
 (define-vop (if-eq)
   (:args (x :scs (any-reg descriptor-reg zero null))
-        (y :scs (any-reg descriptor-reg zero null)))
+         (y :scs (any-reg descriptor-reg zero null)))
   (:conditional)
   (:temporary (:scs (non-descriptor-reg)) temp)
   (:info target not-p)
@@ -34,5 +34,5 @@
   (:generator 3
     (inst cmpeq x y temp)
     (if not-p
-       (inst beq temp target)
-       (inst bne temp target))))
+        (inst beq temp target)
+        (inst bne temp target))))