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

Added :arg-types and :result-types to sxhash-simple-{sub,}string.

parent 8c06276c
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/array.lisp,v 1.11 1990/06/22 17:28:11 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/array.lisp,v 1.12 1990/06/22 17:58:04 wlott Exp $
;;; ;;;
;;; This file contains the support routines for arrays and vectors. ;;; This file contains the support routines for arrays and vectors.
;;; ;;;
...@@ -120,7 +120,8 @@ ...@@ -120,7 +120,8 @@
(define-assembly-routine (sxhash-simple-string (define-assembly-routine (sxhash-simple-string
((:translate %sxhash-simple-string) ((:translate %sxhash-simple-string)
(:policy :fast-safe)) (:policy :fast-safe)
(:result-types positive-fixnum))
(:arg string descriptor-reg a0-offset) (:arg string descriptor-reg a0-offset)
(:res result any-reg a0-offset) (:res result any-reg a0-offset)
...@@ -212,7 +213,9 @@ ...@@ -212,7 +213,9 @@
(define-assembly-routine (sxhash-simple-substring (define-assembly-routine (sxhash-simple-substring
((:translate %sxhash-simple-substring) ((:translate %sxhash-simple-substring)
(:policy :fast-safe)) (:policy :fast-safe)
(:arg-types * positive-fixnum)
(:result-types positive-fixnum))
(:arg string descriptor-reg a0-offset) (:arg string descriptor-reg a0-offset)
(:arg length any-reg a1-offset) (:arg length any-reg a1-offset)
(:res result any-reg a0-offset) (:res result any-reg a0-offset)
......
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