Skip to content
Snippets Groups Projects
Commit 4d946e4f authored by pfdietz's avatar pfdietz
Browse files

New sbcl compiler bug (type propagation on COERCE)

parent d5535795
No related branches found
No related tags found
No related merge requests found
...@@ -11593,3 +11593,16 @@ Broken at C::WT-MAKE-CLOSURE. ...@@ -11593,3 +11593,16 @@ Broken at C::WT-MAKE-CLOSURE.
0)))) 0))))
(funcall (compile nil form) 2582756596)) (funcall (compile nil form) 2582756596))
0) 0)
;;; sbcl 0.9.13.8 (x86 linux)
;;; VALUES type illegal in this context: *
(deftest misc.649
(let ((form '(lambda (p2)
(declare (optimize (speed 0) (safety 0) (debug 2) (space 2))
(type (member integer *) p2))
(coerce 523242 p2))))
(funcall (compile nil form) 523242))
523242)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment