0.9.3.63:
[sbcl.git] / src / compiler / mips / pred.lisp
index 2d9a9c2..11f9590 100644 (file)
 
 (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)
   (:info target not-p)
   (:policy :fast-safe)
   (:translate eq)
   (:generator 3
     (if not-p
-       (inst bne x y target)
-       (inst beq x y target))
+        (inst bne x y target)
+        (inst beq x y target))
     (inst nop)))