Commit 1fed15fc by Ilya Enkovich Committed by Kirill Yukhin

symtab.c (change_decl_assembler_name): Fix transparent alias chain construction.

gcc/
        * symtab.c (change_decl_assembler_name): Fix transparent alias
        chain construction.

From-SVN: r208637
parent 454fdba9
2014-03-18 Ilya Enkovich <ilya.enkovich@intel.com>
* symtab.c (change_decl_assembler_name): Fix transparent alias
chain construction.
2014-03-16 Renlin Li <Renlin.Li@arm.com> 2014-03-16 Renlin Li <Renlin.Li@arm.com>
* config/aarch64/aarch64.c: Correct the comments about the * config/aarch64/aarch64.c: Correct the comments about the
......
...@@ -492,7 +492,7 @@ change_decl_assembler_name (tree decl, tree name) ...@@ -492,7 +492,7 @@ change_decl_assembler_name (tree decl, tree name)
if (alias) if (alias)
{ {
IDENTIFIER_TRANSPARENT_ALIAS (name) = 1; IDENTIFIER_TRANSPARENT_ALIAS (name) = 1;
TREE_CHAIN (DECL_ASSEMBLER_NAME (name)) = alias; TREE_CHAIN (name) = alias;
} }
if (node) if (node)
insert_to_assembler_name_hash (node, true); insert_to_assembler_name_hash (node, true);
......
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