Skip to content
Snippets Groups Projects
Commit 548472ce authored by wlott's avatar wlott
Browse files

Was not-ing a value when it should have been negated.

parent 29a030b1
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/hppa/array.lisp,v 1.3 1992/07/08 01:37:55 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/hppa/array.lisp,v 1.4 1992/07/08 03:09:54 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
(inst addi (fixnum 4) length length) (inst addi (fixnum 4) length length)
(inst comb := zero-tn length done :nullify t) (inst comb := zero-tn length done :nullify t)
(inst uaddcm zero-tn length length) (inst sub zero-tn length length)
(inst sll length 1 length) (inst sll length 1 length)
(inst mtctl length :sar) (inst mtctl length :sar)
(inst shd zero-tn data :variable data) (inst shd zero-tn data :variable data)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment