diff --git a/compiler/alpha/array.lisp b/compiler/alpha/array.lisp
index 39f980837cae949dfeae8e7636f9a4bd0359dce4..7da5a7856e7613306a646c82f9b0959eb22b3777 100644
--- a/compiler/alpha/array.lisp
+++ b/compiler/alpha/array.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/alpha/array.lisp,v 1.3 1998/01/21 19:23:48 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/alpha/array.lisp,v 1.4 1998/01/21 22:30:43 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -146,8 +146,17 @@
 (def-full-data-vector-frobs simple-array-unsigned-byte-32 unsigned-num
   unsigned-reg)
 
+#+signed-array
+(def-partial-data-vector-frobs simple-array-signed-byte-8 positive-fixnum
+  :byte t signed-reg signed-reg)
+
+#+signed-array
+(def-partial-data-vector-frobs simple-array-signed-byte-16 positive-fixnum
+  :short t signed-reg signed-reg)
+
 #+signed-array
 (def-full-data-vector-frobs simple-array-signed-byte-30 tagged-num any-reg)
+
 #+signed-array
 (def-full-data-vector-frobs simple-array-signed-byte-32 signed-num signed-reg)
 
diff --git a/compiler/alpha/macros.lisp b/compiler/alpha/macros.lisp
index d4dc99121fef654e3568d53369ab4f1e2cedb90e..88a7b8273f9de23507007574b8af1ff79f68fcec 100644
--- a/compiler/alpha/macros.lisp
+++ b/compiler/alpha/macros.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/alpha/macros.lisp,v 1.2 1994/10/31 04:39:51 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/alpha/macros.lisp,v 1.3 1998/01/21 22:30:44 dtc Rel $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -441,8 +441,9 @@
 		    `((inst ldq_u temp (- (+ (* ,offset word-bytes)
 					     (* index ,scale)) ,lowtag)
 			    object)
-		      (inst lda temp1  (- (+ (* ,offset word-bytes)
-					     (* index ,scale)) ,lowtag))
+		      (inst lda temp1 (- (+ (* ,offset word-bytes)
+					    (* index ,scale)) ,lowtag)
+			    object)
 		      (inst extwl temp temp1 temp)
 		      (inst sll temp 48 temp)
 		      (inst sra temp 48 value))