From 8d3b9bf269656f692b09c4020059c94ba346e5ae Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Sun, 7 Apr 1991 16:16:27 +0000
Subject: [PATCH] Added another flavor of cal that allows one to specify ``0''
 as the second register because we actually try to use this in the li pseudo
 instruction.

---
 compiler/rt/insts.lisp | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/compiler/rt/insts.lisp b/compiler/rt/insts.lisp
index 3b98222d4..510ba7b47 100644
--- a/compiler/rt/insts.lisp
+++ b/compiler/rt/insts.lisp
@@ -262,6 +262,10 @@
      (r2 :argument register)
      (r3 :same-as r2)
      (i :argument (signed-byte 16)))
+  (d (op :constant #xC8)
+     (r2 :argument register)
+     (r3 :argument (integer 0 0))
+     (i :argument (signed-byte 16)))
   (d (op :constant #xC8)
      (r2 :argument register)
      (r3 :argument address-register)
@@ -557,7 +561,7 @@
     ((unsigned-byte 4)
      (inst lis reg value))
     ((signed-byte 16)
-     (inst cal reg value))
+     (inst cal reg 0 value))
     ((unsigned-byte 16)
      (inst cal16 reg value))
     ((or (signed-byte 32) (unsigned-byte 32))
@@ -578,7 +582,7 @@
     ((unsigned-byte 4)
      (inst lis reg value))
     ((signed-byte 16)
-     (inst cal reg value))
+     (inst cal reg 0 value))
     ((unsigned-byte 16)
      (inst cal16 reg value))
     ((or (signed-byte 32) (unsigned-byte 32))
-- 
GitLab