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

When in generic--, subtract instead of add.

parent c28ba3c7
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/sparc/arith.lisp,v 1.6 1990/12/02 16:51:28 wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/sparc/arith.lisp,v 1.7 1990/12/15 19:08:12 wlott Exp $
;;;
;;; Stuff to handle simple cases for generic arithmetic.
;;;
......@@ -95,7 +95,7 @@
(inst sra temp x 2)
(inst sra temp2 y 2)
(inst add temp2 temp)
(inst sub temp2 temp)
(with-fixed-allocation (res temp vm:bignum-type (1+ bignum-digits-offset))
(storew temp2 res vm:bignum-digits-offset vm:other-pointer-type))
(lisp-return lra :offset 2)
......
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