From b4bf08ba1b73081bfc0b8baf6b50aeadc8895bac Mon Sep 17 00:00:00 2001
From: toy <toy>
Date: Thu, 6 Nov 2003 22:19:28 +0000
Subject: [PATCH] Use the LI instruction macro instead of sethi/add.

---
 compiler/sparc/arith.lisp | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/compiler/sparc/arith.lisp b/compiler/sparc/arith.lisp
index 3f20ef914..ddb3783ad 100644
--- a/compiler/sparc/arith.lisp
+++ b/compiler/sparc/arith.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/sparc/arith.lisp,v 1.37 2003/10/27 16:58:58 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/arith.lisp,v 1.38 2003/11/06 22:19:28 toy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -701,8 +701,7 @@
 	(destructuring-bind (shift bit-mask)
 	    stuff
 	  ;; Set mask
-	  (inst sethi mask (ldb (byte 22 10) bit-mask))
-	  (inst add mask (ldb (byte 10 0) bit-mask))
+	  (inst li mask bit-mask)
 
 	  (inst and temp res mask)
 	  (inst srln res shift)
-- 
GitLab