diff options
| author | bernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-25 17:54:37 +0000 | 
|---|---|---|
| committer | bernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-25 17:54:37 +0000 | 
| commit | 5c5069aa140a544adadbb58452d167baf3f991ea (patch) | |
| tree | 8ab8015a9bdfdfbb1fa0dcbae7472bb037742586 /gcc/java/decl.c | |
| parent | 4dee9c0e27a48f2a91120457938cabe40ab95cf3 (diff) | |
| download | ppe42-gcc-5c5069aa140a544adadbb58452d167baf3f991ea.tar.gz ppe42-gcc-5c5069aa140a544adadbb58452d167baf3f991ea.zip | |
	* decl.c: Rename all identifiers named `class' to `cl'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85152 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/decl.c')
| -rw-r--r-- | gcc/java/decl.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/gcc/java/decl.c b/gcc/java/decl.c index c61d42653f7..9da83fc15c7 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;  } | 

