aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorEric Christopher <echristo@redhat.com>2004-09-09 00:45:52 +0000
committerEric Christopher <echristo@gcc.gnu.org>2004-09-09 00:45:52 +0000
commitf838cd94193750c921f2864a8ef8fba8b579681d (patch)
tree05610befc722d0f1d63fa51b1184cdae055ca93b /gcc
parentae3e04b843afc0387ae90f8a302cc39293fac3f9 (diff)
downloadgcc-f838cd94193750c921f2864a8ef8fba8b579681d.zip
gcc-f838cd94193750c921f2864a8ef8fba8b579681d.tar.gz
gcc-f838cd94193750c921f2864a8ef8fba8b579681d.tar.bz2
builtins.c: Fix prototype for fold_builtin_atan.
2004-09-08 Eric Christopher <echristo@redhat.com> * builtins.c: Fix prototype for fold_builtin_atan. From-SVN: r87214
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/builtins.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 52eca28..200d6f4 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
2004-09-08 Eric Christopher <echristo@redhat.com>
+ * builtins.c: Fix prototype for fold_builtin_atan.
+
+2004-09-08 Eric Christopher <echristo@redhat.com>
+
* builtins.c (fold_builtin_strlen, fold_builtin_sqrt, fold_builtin_cbrt,
fold_builtin_pow, fold_builtin_sin, fold_builtin_cos, fold_builtin_tan,
fold_builtin_atan): New functions. Migrate function bodies...
diff --git a/gcc/builtins.c b/gcc/builtins.c
index f13e725..537a5d4 100644
--- a/gcc/builtins.c
+++ b/gcc/builtins.c
@@ -155,7 +155,7 @@ static tree fold_builtin_pow (tree, tree, tree);
static tree fold_builtin_sin (tree);
static tree fold_builtin_cos (tree, tree, tree);
static tree fold_builtin_tan (tree);
-static tree fold_builtin_atan (tree);
+static tree fold_builtin_atan (tree, tree);
static tree fold_builtin_trunc (tree);
static tree fold_builtin_floor (tree);
static tree fold_builtin_ceil (tree);