Skip to content
Snippets Groups Projects
Commit 999c2f88 authored by dtc's avatar dtc
Browse files

Fix the result type of sin and cos, which should be (complex float)

not (complex (float -1.0 1.0))). From Raymond Toy.
parent ac5034a9
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.75 1997/10/24 18:08:10 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.76 1997/12/03 08:19:47 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -261,7 +261,7 @@ ...@@ -261,7 +261,7 @@
(movable foldable flushable explicit-check)) (movable foldable flushable explicit-check))
(defknown (sin cos) (number) (defknown (sin cos) (number)
(or (float -1.0 1.0) (complex (float -1.0 1.0))) (or (float -1.0 1.0) (complex float))
(movable foldable flushable explicit-check recursive) (movable foldable flushable explicit-check recursive)
:derive-type #'result-type-float-contagion) :derive-type #'result-type-float-contagion)
......
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