0.9.1.37:
authorChristophe Rhodes <csr21@cam.ac.uk>
Sat, 11 Jun 2005 20:46:19 +0000 (20:46 +0000)
committerChristophe Rhodes <csr21@cam.ac.uk>
Sat, 11 Jun 2005 20:46:19 +0000 (20:46 +0000)
Maybe fix the build on alpha.
... one more WITH-FIXED-ALLOCATION problem.

src/compiler/alpha/alloc.lisp
src/compiler/sparc/alloc.lisp
version.lisp-expr

index fd3822b..7966981 100644 (file)
       (storew function result closure-fun-slot fun-pointer-lowtag))))
 
 ;;; The compiler likes to be able to directly make value cells.
-;;; 
 (define-vop (make-value-cell)
   (:args (value :to :save :scs (descriptor-reg any-reg null zero)))
   (:temporary (:scs (non-descriptor-reg)) temp)
   (:results (result :scs (descriptor-reg)))
   (:generator 10
     (with-fixed-allocation
-       (result temp value-cell-header-widetag value-cell-size))
-    (storew value result value-cell-value-slot other-pointer-lowtag)))
-
+       (result temp value-cell-header-widetag value-cell-size)
+      (storew value result value-cell-value-slot other-pointer-lowtag))))
 \f
 ;;;; automatic allocators for primitive objects
 
index 721b944..755323a 100644 (file)
     (storew function result closure-fun-slot fun-pointer-lowtag)))
 
 ;;; The compiler likes to be able to directly make value cells.
-;;; 
 (define-vop (make-value-cell)
   (:args (value :to :save :scs (descriptor-reg any-reg)))
   (:temporary (:scs (non-descriptor-reg)) temp)
     (with-fixed-allocation 
         (result temp value-cell-header-widetag value-cell-size)
       (storew value result value-cell-value-slot other-pointer-lowtag))))
-
 \f
 ;;;; Automatic allocators for primitive objects.
 
index 2bb3732..5e98092 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".)
-"0.9.1.36"
+"0.9.1.37"