Skip to content
Snippets Groups Projects
Commit 7c427c71 authored by toy's avatar toy
Browse files

Fix bug where the compiler was not correctly deriving the result type

of

	(defun foo (x)
	  (declare (type (double-float (0d0)) x))
	  (* x (- (log (random 1d0)))))

ONE-ARG-DERIVE-TYPE and TWO-ARG-DERIVE-TYPE should not create member
types directly, but should use specifier-type to create them, which
will canonicalize them appropriately for the type system.  The type
system expects member types to be converted to unions of singleton
number types, except in certain cases, like signed zeroes.

Based on a patch from Christophe Rhodes, sent to cmucl-imp.
parent cb113a53
No related branches found
No related tags found
No related merge requests found
Loading
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