Commit 381166d4 by Bernardo Innocenti Committed by Bernardo Innocenti

* decl.c: Rename all identifiers named `class' to `cl'.

From-SVN: r85152
parent eab03d5a
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.
......
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment