1.0.37.66: Fix the build on alpha
authorPaul Khuong <pvk@pvk.ca>
Mon, 26 Apr 2010 21:39:52 +0000 (21:39 +0000)
committerPaul Khuong <pvk@pvk.ca>
Mon, 26 Apr 2010 21:39:52 +0000 (21:39 +0000)
 * There was a type (SC!C) in a VOP definition...

NEWS
src/compiler/alpha/move.lisp
version.lisp-expr

diff --git a/NEWS b/NEWS
index 9c3df33..23759fb 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -71,6 +71,7 @@ changes relative to sbcl-1.0.37:
     The maximal magnitude is 2^63, not 2^64.
   * bug fix: Transforms for TRUNCATE don't die when the result is completely
     ignored anymore.
+  * bug fix: Maybe restore buildability on Alpha.
 
 changes in sbcl-1.0.37 relative to sbcl-1.0.36:
   * enhancement: Backtrace from THROW to uncaught tag on x86oids now shows
index 6416dc6..ce7fd88 100644 (file)
   (:results (y :scs (signed-reg unsigned-reg)))
   (:note "constant load")
   (:generator 1
-    (cond ((sc!c::tn-leaf x)
+    (cond ((sb!c::tn-leaf x)
            (inst li (tn-value x) y))
           (t
            (loadw y code-tn (tn-offset x) other-pointer-lowtag)
index a76db2c..ef5524a 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.37.65"
+"1.0.37.66"