From: Stephen Adams Date: Thu, 11 May 1995 05:39:59 +0000 (+0000) Subject: Added ATAN. X-Git-Tag: 20090517-FFI~6320 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=aa651d06dd8c1d6a29cb9ac92d59a3873813ce30;p=mit-scheme.git Added ATAN. --- diff --git a/v8/src/compiler/midend/cleanup.scm b/v8/src/compiler/midend/cleanup.scm index abaacf2ce..1e900bb7b 100644 --- a/v8/src/compiler/midend/cleanup.scm +++ b/v8/src/compiler/midend/cleanup.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: cleanup.scm,v 1.17 1995/05/06 18:04:45 adams Exp $ +$Id: cleanup.scm,v 1.18 1995/05/11 05:39:59 adams Exp $ Copyright (c) 1994-1995 Massachusetts Institute of Technology @@ -337,6 +337,9 @@ MIT in each case. |# (unary 'ASIN asin) (unary 'ACOS acos) + (unary 'ATAN atan) + (binary 'ATAN atan) + (binary 'EXPT expt) (binary (make-primitive-procedure '&+) +) (binary (make-primitive-procedure '&-) -)