Skip to content
Snippets Groups Projects
Commit 13c9b250 authored by ram's avatar ram
Browse files

Ripped out :policy specs in unsafe transforms, as this semantics is

automatically handled by VALID-FUNCTION-USE.
parent 313d29cb
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/float-tran.lisp,v 1.9 1990/12/12 00:08:45 ram Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/float-tran.lisp,v 1.10 1991/01/02 19:13:58 ram Exp $
;;; ;;;
;;; This file contains floating-point specific transforms, and may be somewhat ;;; This file contains floating-point specific transforms, and may be somewhat
;;; implementation dependent in its assumptions of what the formats are. ;;; implementation dependent in its assumptions of what the formats are.
...@@ -240,7 +240,7 @@ ...@@ -240,7 +240,7 @@
(declare (ignore x)) (declare (ignore x))
type) type)
args))) args)))
(let ((rtype (when assert-result '(float :policy (zerop safety))))) (let ((rtype (when assert-result '(float))))
`(progn `(progn
(deftransform ,name (,args ,(frob 'single-float) ,@rtype) (deftransform ,name (,args ,(frob 'single-float) ,@rtype)
'(coerce (,prim ,@(mapcar #'(lambda (arg) '(coerce (,prim ,@(mapcar #'(lambda (arg)
...@@ -254,7 +254,7 @@ ...@@ -254,7 +254,7 @@
(def-irrat-transforms expt %pow (x y) t) (def-irrat-transforms expt %pow (x y) t)
(def-irrat-transforms log %log (x) t) (def-irrat-transforms log %log (x) t)
(deftransform log ((x y) (float float) float :policy (zerop safety)) (deftransform log ((x y) (float float) float)
'(/ (log x) (log y))) '(/ (log x) (log y)))
(def-irrat-transforms sqrt %sqrt (x) t) (def-irrat-transforms sqrt %sqrt (x) t)
......
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