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: r50303
This commit is contained in:
David Billinghurst 2002-03-05 05:09:31 +00:00 committed by David Billinghurst
parent 5b259de63f
commit ed34395505
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
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
2002-03-02 Per Bothner <per@bothner.com>
Make --CLASSPATH by a synonym for --classpath and -classpath.

View File

@ -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];