aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernardo Innocenti <bernie@develer.com>2004-07-25 19:54:37 +0200
committerBernardo Innocenti <bernie@gcc.gnu.org>2004-07-25 19:54:37 +0200
commit381166d48e97ccf1bbc9c747bd11e61b7b0c8155 (patch)
tree8ab8015a9bdfdfbb1fa0dcbae7472bb037742586
parenteab03d5ade8b4e33246d295538fea77240363568 (diff)
downloadgcc-381166d48e97ccf1bbc9c747bd11e61b7b0c8155.zip
gcc-381166d48e97ccf1bbc9c747bd11e61b7b0c8155.tar.gz
gcc-381166d48e97ccf1bbc9c747bd11e61b7b0c8155.tar.bz2
* decl.c: Rename all identifiers named `class' to `cl'.
From-SVN: r85152
-rw-r--r--gcc/java/ChangeLog4
-rw-r--r--gcc/java/decl.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index b8e6eec..bb5aaa5 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -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.
diff --git a/gcc/java/decl.c b/gcc/java/decl.c
index c61d426..9da83fc 100644
--- a/gcc/java/decl.c
+++ b/gcc/java/decl.c
@@ -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;
}