Commit ed9eaf9b by Richard Stallman

(create_builtin_decl): Set TREE_STATIC.

Don't set DECL_EXTERNAL or TREE_PUBLIC.

From-SVN: r1997
parent d98c1e33
......@@ -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);
}
......
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