From 24e9f71a0107b3410c975a44c180c286a1fb4460 Mon Sep 17 00:00:00 2001
From: pw <pw>
Date: Sat, 6 Dec 1997 20:12:21 +0000
Subject: [PATCH] Add deftransform for CIS.

---
 compiler/float-tran.lisp | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/compiler/float-tran.lisp b/compiler/float-tran.lisp
index 0247f7539..1824fae6b 100644
--- a/compiler/float-tran.lisp
+++ b/compiler/float-tran.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/float-tran.lisp,v 1.45 1997/12/06 18:47:34 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/float-tran.lisp,v 1.46 1997/12/06 20:12:21 pw Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1258,6 +1258,12 @@
   (frob single-float)
   (frob double-float))
 
+(macrolet ((frob (type)
+	     `(deftransform cis ((z) ((,type)) *)
+	       '(complex (cos z) (sin z)))))
+  (frob single-float)
+  (frob double-float))
+
 ;;; Here are simple optimizers for sin, cos, and tan.  They do not
 ;;; produce a minimal range for the result; the result is the widest
 ;;; possible answer.  This gets around the problem of doing range
-- 
GitLab