diff options
author | Eric Christopher <echristo@redhat.com> | 2004-09-09 00:45:52 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2004-09-09 00:45:52 +0000 |
commit | f838cd94193750c921f2864a8ef8fba8b579681d (patch) | |
tree | 05610befc722d0f1d63fa51b1184cdae055ca93b /gcc/builtins.c | |
parent | ae3e04b843afc0387ae90f8a302cc39293fac3f9 (diff) | |
download | gcc-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/builtins.c')
-rw-r--r-- | gcc/builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |