* decl.c: Rename all identifiers named `class' to `cl'.
authorBernardo Innocenti <bernie@develer.com>
Sun, 25 Jul 2004 17:54:37 +0000 (19:54 +0200)
committerBernardo Innocenti <bernie@gcc.gnu.org>
Sun, 25 Jul 2004 17:54:37 +0000 (19:54 +0200)
From-SVN: r85152

gcc/java/ChangeLog
gcc/java/decl.c

index b8e6eec6dcb4507afbfe2ddbd197f60b08f2c19d..bb5aaa5b811f108cbd5ec990dde7538e97b19d3f 100644 (file)
@@ -1,3 +1,7 @@
+2004-07-25  Bernardo Innocenti  <bernie@develer.com>
+
+       * decl.c: Rename all identifiers named `class' to `cl'.
+
 2004-07-25  Richard Henderson  <rth@redhat.com>
 
        * decl.c (build_result_decl): Set DECL_ARTIFICIAL and DECL_IGNORED_P.
index c61d42653f70dc63049656d2fba298ab6928a25b..9da83fc15c73006b2c0d5eea44e83e73b9246059 100644 (file)
@@ -499,7 +499,7 @@ tree
 builtin_function (const char *name,
                  tree type,
                  int function_code,
-                 enum built_in_class class,
+                 enum built_in_class cl,
                  const char *library_name,
                  tree ARG_UNUSED (attrs))
 {
@@ -510,7 +510,7 @@ builtin_function (const char *name,
     SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
   make_decl_rtl (decl, NULL);
   pushdecl (decl);
-  DECL_BUILT_IN_CLASS (decl) = class;
+  DECL_BUILT_IN_CLASS (decl) = cl;
   DECL_FUNCTION_CODE (decl) = function_code;
   return decl;
 }