diff options
author | David Billinghurst <David.Billinghurst@riotinto.com> | 2002-03-05 05:16:15 +0000 |
---|---|---|
committer | David Billinghurst <billingd@gcc.gnu.org> | 2002-03-05 05:16:15 +0000 |
commit | 6d6b5cd7b01268cf7b68bfede05166e1e1556355 (patch) | |
tree | 14f84cd01d50d01540e339854a88b01db198285b /gcc/java/builtins.c | |
parent | 28bcfd4dbb09529bc42db9703caeb15d1d4bf791 (diff) | |
download | gcc-6d6b5cd7b01268cf7b68bfede05166e1e1556355.zip gcc-6d6b5cd7b01268cf7b68bfede05166e1e1556355.tar.gz gcc-6d6b5cd7b01268cf7b68bfede05166e1e1556355.tar.bz2 |
builtins.c (cos_builtin): method_return_type ATTRIBUTE_UNUSED
2002-03-05 David Billinghurst <David.Billinghurst@riotinto.com>
* builtins.c(cos_builtin): method_return_type ATTRIBUTE_UNUSED
* builtins.c(sin_builtin): Likewise
* builtins.c(sqrt_builtin): Likewise
From-SVN: r50304
Diffstat (limited to 'gcc/java/builtins.c')
-rw-r--r-- | gcc/java/builtins.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/builtins.c b/gcc/java/builtins.c index 832e643..7db228c 100644 --- a/gcc/java/builtins.c +++ b/gcc/java/builtins.c @@ -156,7 +156,7 @@ build_function_call_expr (tree fn, tree arglist) static tree cos_builtin (method_return_type, method_arguments) - tree method_return_type, method_arguments; + tree method_return_type ATTRIBUTE_UNUSED, method_arguments; { /* FIXME: this assumes that jdouble and double are the same. */ tree fn = built_in_decls[BUILT_IN_COS]; @@ -167,7 +167,7 @@ cos_builtin (method_return_type, method_arguments) static tree sin_builtin (method_return_type, method_arguments) - tree method_return_type, method_arguments; + tree method_return_type ATTRIBUTE_UNUSED, method_arguments; { /* FIXME: this assumes that jdouble and double are the same. */ tree fn = built_in_decls[BUILT_IN_SIN]; @@ -178,7 +178,7 @@ sin_builtin (method_return_type, method_arguments) static tree sqrt_builtin (method_return_type, method_arguments) - tree method_return_type, method_arguments; + tree method_return_type ATTRIBUTE_UNUSED, method_arguments; { /* FIXME: this assumes that jdouble and double are the same. */ tree fn = built_in_decls[BUILT_IN_SQRT]; |