0.9.6.32:
[sbcl.git] / src / compiler / x86-64 / subprim.lisp
index 1e9e532..74692e8 100644 (file)
@@ -31,7 +31,7 @@
     (inst xor count count)
     ;; If we are starting with NIL, then it's really easy.
     (inst cmp ptr nil-value)
-    (inst jmp :e done)
+    (inst jmp :e DONE)
     ;; Note: we don't have to test to see whether the original argument is a
     ;; list, because this is a :fast-safe vop.
     LOOP
     (inst add count (fixnumize 1))
     ;; If we hit NIL, then we are done.
     (inst cmp ptr nil-value)
-    (inst jmp :e done)
+    (inst jmp :e DONE)
     ;; Otherwise, check to see whether we hit the end of a dotted list. If
     ;; not, loop back for more.
     (move eax ptr)
     (inst and al-tn lowtag-mask)
     (inst cmp al-tn list-pointer-lowtag)
-    (inst jmp :e loop)
+    (inst jmp :e LOOP)
     ;; It's dotted all right. Flame out.
     (error-call vop object-not-list-error ptr)
     ;; We be done.
     (inst xor count count)
     ;; If we are starting with NIL, we be done.
     (inst cmp ptr nil-value)
-    (inst jmp :e done)
+    (inst jmp :e DONE)
     ;; Indirect the next cons cell, and boost the count.
     LOOP
     (loadw ptr ptr cons-cdr-slot list-pointer-lowtag)
     (inst add count (fixnumize 1))
     ;; If we aren't done, go back for more.
     (inst cmp ptr nil-value)
-    (inst jmp :ne loop)
+    (inst jmp :ne LOOP)
     DONE))
 
 (define-static-fun length (object) :translate length)