(create_builtin_decl): Set TREE_STATIC.

Don't set DECL_EXTERNAL or TREE_PUBLIC.

From-SVN: r1997
This commit is contained in:
Richard Stallman 1992-08-30 21:05:48 +00:00
parent d98c1e3389
commit ed9eaf9bb8
1 changed files with 1 additions and 2 deletions

View File

@ -496,8 +496,7 @@ create_builtin_decl (code, type, name)
tree decl = build_decl (code, get_identifier (name), type);
if (code == VAR_DECL)
{
DECL_EXTERNAL (decl) = 1;
TREE_PUBLIC (decl) = 1;
TREE_STATIC (decl) = 1;
make_decl_rtl (decl, 0, 1);
pushdecl (decl);
}