On Mon, Jun 16, 2014 at 12:35 AM, Jan Hubicka <hubi...@ucw.cz> wrote:
> @@ -512,9 +516,9 @@ function_and_variable_visibility (bool w > next = next->same_comdat_group) > { > next->set_comdat_group (NULL); > - if (!next->alias) > - next->set_section (NULL); > symtab_make_decl_local (next->decl); > + if (!node->alias) > + node->reset_section (); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > next->unique_name = ((next->resolution == > LDPR_PREVAILING_DEF_IRONLY > || next->unique_name > || next->resolution == > LDPR_PREVAILING_DEF_IRONLY_EXP) Honza, did you really intend to change the above from next->alias and next->set_section () to node->alias and node->reset_section () ? That doesn't look right. - David