1.0.9.23: Delete conditional INST NOP optimization.
authorThiemo Seufer <ths@networkno.de>
Sat, 1 Sep 2007 19:39:04 +0000 (19:39 +0000)
committerThiemo Seufer <ths@networkno.de>
Sat, 1 Sep 2007 19:39:04 +0000 (19:39 +0000)
Using it is apparently too complicated for cold init.

src/compiler/mips/type-vops.lisp
version.lisp-expr

index e003314..eb0c5f6 100644 (file)
         (inst beq temp zero-tn target))
     (inst nop)))
 
-(defun %test-lowtag (value target not-p lowtag &key skip-nop temp)
+(defun %test-lowtag (value target not-p lowtag &key temp)
   (assemble ()
     (inst and temp value lowtag-mask)
     (inst xor temp lowtag)
     (if not-p
         (inst bne temp zero-tn target)
         (inst beq temp zero-tn target))
-    (unless skip-nop
-      (inst nop))))
+    (inst nop)))
 
 (defun %test-headers (value target not-p function-p headers
                       &key (drop-through (gen-label)) temp)
index 485c50d..d46708d 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.9.22"
+"1.0.9.23"