From 014be6c8db43eb453ae01ae4088ae530852d51a0 Mon Sep 17 00:00:00 2001 From: Paul Khuong Date: Mon, 26 Apr 2010 21:39:52 +0000 Subject: [PATCH] 1.0.37.66: Fix the build on alpha * There was a type (SC!C) in a VOP definition... --- NEWS | 1 + src/compiler/alpha/move.lisp | 2 +- version.lisp-expr | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 9c3df33..23759fb 100644 --- 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 diff --git a/src/compiler/alpha/move.lisp b/src/compiler/alpha/move.lisp index 6416dc6..ce7fd88 100644 --- a/src/compiler/alpha/move.lisp +++ b/src/compiler/alpha/move.lisp @@ -161,7 +161,7 @@ (: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) diff --git a/version.lisp-expr b/version.lisp-expr index a76db2c..ef5524a 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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" -- 1.7.10.4