Skip to content
Snippets Groups Projects
Commit ff91e060 authored by rtoy's avatar rtoy
Browse files

The return type of COPY-SEQ is a CONSED-SEQUENCE which includes

simple-arrays, but the derive-type optimizer (RESULT-TYPE-FIRST-ARG)
just returns the type of the first arg.  This is wrong if the first
arg is a complex array.

Use SEQUENCE-RESULT-NTH-ARG instead.

Fixes cmucl-type-prop.30 test.
parent 61b22a4b
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.129 2004/12/23 16:22:05 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.130 2005/04/22 14:00:08 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -393,7 +393,7 @@ ...@@ -393,7 +393,7 @@
:derive-type (sequence-result-nth-arg 1)) :derive-type (sequence-result-nth-arg 1))
(defknown copy-seq (sequence) consed-sequence (flushable) (defknown copy-seq (sequence) consed-sequence (flushable)
:derive-type #'result-type-first-arg) :derive-type (sequence-result-nth-arg 1))
(defknown length (sequence) index (foldable flushable)) (defknown length (sequence) index (foldable flushable))
......
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