Commit 03e42132 by Jason Merrill

(assemble_name): Set TREE_SYMBOL_REFERENCED on the

        identifier for `name'.

From-SVN: r7550
parent d3568529
......@@ -1484,6 +1484,9 @@ assemble_name (file, name)
FILE *file;
char *name;
{
tree id = get_identifier (name);
TREE_SYMBOL_REFERENCED (id) = 1;
if (name[0] == '*')
{
if (output_bytecode)
......
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