From ccb928b3fcb54f786748b1db577829fb4a9bb1c6 Mon Sep 17 00:00:00 2001 From: ch <ch> Date: Thu, 22 Mar 1990 23:50:34 +0000 Subject: [PATCH] Changed the translation of SAP-INT and INT-SAP to SAP-INT and INT-SAP respectively. --- compiler/mips/sap.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/mips/sap.lisp b/compiler/mips/sap.lisp index 8a331a699..ade0c6d28 100644 --- a/compiler/mips/sap.lisp +++ b/compiler/mips/sap.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/sap.lisp,v 1.1 1990/03/12 23:48:56 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/sap.lisp,v 1.2 1990/03/22 23:50:34 ch Exp $ ;;; ;;; This file contains the MIPS VM definition of SAP operations. ;;; @@ -76,7 +76,7 @@ (:args (sap :scs (sap-reg) :target int)) (:results (int :scs (any-reg descriptor-reg))) (:arg-types system-area-pointer) - (:translate char-code) + (:translate sap-int) (:policy :fast-safe) (:generator 0 ;; ### Need to check for fixnum overflow. @@ -85,7 +85,7 @@ (define-vop (int-sap) (:args (int :scs (any-reg descriptor-reg) :target sap)) (:results (sap :scs (sap-reg))) - (:translate code-char) + (:translate int-sap) (:policy :fast-safe) (:generator 0 ;; ### Need to check to see if it is a bignum. -- GitLab