builtins.c (cos_builtin): method_return_type ATTRIBUTE_UNUSED
authorDavid Billinghurst <David.Billinghurst@riotinto.com>
Tue, 5 Mar 2002 05:16:15 +0000 (05:16 +0000)
committerDavid Billinghurst <billingd@gcc.gnu.org>
Tue, 5 Mar 2002 05:16:15 +0000 (05:16 +0000)
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

gcc/java/ChangeLog
gcc/java/builtins.c

index b1b01b98b07ea1f9e1d13f310dc915a93a188e26..0f110e49e36bed874399091de1160fd3dce33f9d 100644 (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-03  Zack Weinberg  <zack@codesourcery.com>
 
        * java/expr.c, java/jcf-parse.c, java/lex.c:
index 832e6435aa6f98b1a2887fb33e2cd895a868302d..7db228cf2c7b6104c90240ea6dab5da078a19dd4 100644 (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];