diff options
| author | echristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-09 00:45:52 +0000 |
|---|---|---|
| committer | echristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-09 00:45:52 +0000 |
| commit | ea67c510f8a9368057de47b84efe715be531a7e9 (patch) | |
| tree | 05610befc722d0f1d63fa51b1184cdae055ca93b | |
| parent | d353bbe1581a63840d18668de42de1374bc8aed2 (diff) | |
| download | ppe42-gcc-ea67c510f8a9368057de47b84efe715be531a7e9.tar.gz ppe42-gcc-ea67c510f8a9368057de47b84efe715be531a7e9.zip | |
2004-09-08 Eric Christopher <echristo@redhat.com>
* builtins.c: Fix prototype for fold_builtin_atan.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87214 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/builtins.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 52eca281922..200d6f4a7f8 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 f13e725b8ed..537a5d4cd2b 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); |

