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

Fixed %TEST-HEADERS to compare the lowtag against FUNCTION-POINTER-TYPE

instead of FUNCTION-HEADER-TYPE when testing for function pointers.
parent 8ade4a49
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/type-vops.lisp,v 1.35 1992/08/04 14:16:36 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/type-vops.lisp,v 1.36 1992/08/16 16:15:58 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -154,7 +154,7 @@ ...@@ -154,7 +154,7 @@
(defun %test-headers (value temp target not-p function-p headers (defun %test-headers (value temp target not-p function-p headers
&optional (drop-through (gen-label))) &optional (drop-through (gen-label)))
(let ((lowtag (if function-p function-header-type other-pointer-type))) (let ((lowtag (if function-p function-pointer-type other-pointer-type)))
(multiple-value-bind (multiple-value-bind
(when-true when-false) (when-true when-false)
;; WHEN-TRUE and WHEN-FALSE are the labels to branch to when ;; WHEN-TRUE and WHEN-FALSE are the labels to branch to when
......
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