Activity log for bug #1908830

Date Who What changed Old value New value Message
2020-12-20 17:28:38 Michael Fiano bug added bug
2020-12-20 17:33:11 Michael Fiano description (declaim (ftype (function (u:f32) u:f32) quartic-in)) (declaim (inline quartic-in)) (defun quartic-in (x) (declare (optimize speed)) (expt x 4)) ; file: /tmp/slimeDWLQ8A ; in: DEFUN QUARTIC-IN ; (EXPT NET.MFIANO.LISP.ORIGIN::X 4) ; ; note: unable to ; optimize ; due to type uncertainty: ; The first argument is a SINGLE-FLOAT, not a (SINGLE-FLOAT 0.0). In this case, power is of type unsigned-byte, and can't be complex. (declaim (ftype (function (single-float) single-float) quartic-in)) (declaim (inline quartic-in)) (defun quartic-in (x)   (declare (optimize speed))   (expt x 4)) ; file: /tmp/slimeDWLQ8A ; in: DEFUN QUARTIC-IN ; (EXPT NET.MFIANO.LISP.ORIGIN::X 4) ; ; note: unable to ; optimize ; due to type uncertainty: ; The first argument is a SINGLE-FLOAT, not a (SINGLE-FLOAT 0.0). In this case, power is of type unsigned-byte, and can't be complex.
2020-12-20 23:57:23 Stas Boukarev sbcl: assignee Stas Boukarev (stassats)
2020-12-30 16:54:39 Stas Boukarev sbcl: status New Fix Committed
2020-12-30 16:55:17 Stas Boukarev sbcl: assignee Stas Boukarev (stassats)
2021-01-30 12:21:18 Christophe Rhodes sbcl: status Fix Committed Fix Released