0.8.2.31:
authorChristophe Rhodes <csr21@cam.ac.uk>
Sat, 16 Aug 2003 01:00:20 +0000 (01:00 +0000)
committerChristophe Rhodes <csr21@cam.ac.uk>
Sat, 16 Aug 2003 01:00:20 +0000 (01:00 +0000)
Fix errors shown up by new ERROR/FORMAT code in sparc backend

src/compiler/sparc/insts.lisp
version.lisp-expr

index 2138a17..cdb9d3d 100644 (file)
@@ -634,7 +634,8 @@ about function addresses and register values.")
 
 (defun cond-move-condition (condition-reg)
   (or (position condition-reg cond-move-condition-registers)
-      (error "Unknown conditional move condition register:  ~S~%")))
+      (error "Unknown conditional move condition register:  ~S~%"
+             condition-reg)))
 
 (defconstant-eqx cond-move-printer
   `(:name cond :tab
@@ -697,7 +698,7 @@ about function addresses and register values.")
 
 (defun register-condition (rcond)
   (or (position rcond cond-move-integer-conditions)
-      (error "Unknown register condition:  ~S~%")))
+      (error "Unknown register condition:  ~S~%" rcond)))
 
 (sb!disassem:define-instruction-format
     (format-4-cond-move-integer 32 :default-printer cond-move-integer-printer)
index 25933ea..7fc2fd3 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.8.2.30"
+"0.8.2.31"