Commit 648fb7cf by Richard Kenner

(assemble_name): Call STRIP_NAME_ENCODING.

From-SVN: r7651
parent f54d4924
......@@ -1484,8 +1484,10 @@ assemble_name (file, name)
FILE *file;
char *name;
{
tree id = get_identifier (name);
TREE_SYMBOL_REFERENCED (id) = 1;
char *real_name;
STRIP_NAME_ENCODING (real_name, name);
TREE_SYMBOL_REFERENCED (get_identifier (real_name)) = 1;
if (name[0] == '*')
{
......
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