Commit 46ae0465 by Jan Hubicka Committed by Jan Hubicka

ipa-visibility.c (update_visibility_by_resolution_info): Fix assert.


	* ipa-visibility.c (update_visibility_by_resolution_info): Fix
	assert.

From-SVN: r214174
parent 6f983e60
2014-08-19 Jan Hubicka <hubicka@ucw.cz>
* ipa-visibility.c (update_visibility_by_resolution_info): Fix
assert.
2014-08-19 David Malcolm <dmalcolm@redhat.com> 2014-08-19 David Malcolm <dmalcolm@redhat.com>
* coretypes.h (class rtx_debug_insn): Add forward declaration. * coretypes.h (class rtx_debug_insn): Add forward declaration.
......
...@@ -398,7 +398,7 @@ update_visibility_by_resolution_info (symtab_node * node) ...@@ -398,7 +398,7 @@ update_visibility_by_resolution_info (symtab_node * node)
if (node->same_comdat_group) if (node->same_comdat_group)
for (symtab_node *next = node->same_comdat_group; for (symtab_node *next = node->same_comdat_group;
next != node; next = next->same_comdat_group) next != node; next = next->same_comdat_group)
gcc_assert (!node->externally_visible gcc_assert (!next->externally_visible
|| define == (next->resolution == LDPR_PREVAILING_DEF_IRONLY || define == (next->resolution == LDPR_PREVAILING_DEF_IRONLY
|| next->resolution == LDPR_PREVAILING_DEF || next->resolution == LDPR_PREVAILING_DEF
|| next->resolution == LDPR_UNDEF || next->resolution == LDPR_UNDEF
......
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