Commit d7e2ff72 by Jan Hubicka Committed by Jan Hubicka

ipa-icf.c (sem_item::compare_symbol_references): Fix use of availability.


	* ipa-icf.c (sem_item::compare_symbol_references): Fix use
	of availability.

From-SVN: r228628
parent 716e92f4
2015-10-08 Jan Hubicka <hubicka@ucw.cz>
* ipa-icf.c (sem_item::compare_symbol_references): Fix use
of availability.
2015-10-08 Jeff Law <law@redhat.com>
* tree-ssa-loop-im.c (rewrite_bittest): Add missing call to
......@@ -521,8 +521,8 @@ sem_item::compare_symbol_references (
n1 = n1->ultimate_alias_target (&avail1);
n2 = n2->ultimate_alias_target (&avail2);
if (avail1 >= AVAIL_INTERPOSABLE && ignored_nodes.get (n1)
&& avail2 >= AVAIL_INTERPOSABLE && ignored_nodes.get (n2))
if (avail1 > AVAIL_INTERPOSABLE && ignored_nodes.get (n1)
&& avail2 > AVAIL_INTERPOSABLE && ignored_nodes.get (n2))
return true;
return return_false_with_msg ("different references");
......
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