other/49533
* ipa-inline-transform.c (can_remove_node_now_p): Fix thunkos.
From-SVN: r178809
+2011-09-13 Jan Hubicka <jh@suse.cz>
+
+ other/49533
+ * ipa-inline-transform.c (can_remove_node_now_p): Fix thunkos.
+
2011-09-13 Paul Brook <paul@codesourcery.com>
* config/arm/arm.h (ASM_PREFERRED_EH_DATA_FORMAT): Define.
return true;
for (next = node->same_comdat_group;
next != node; next = next->same_comdat_group)
- if (node->callers && node->callers != e
- && !can_remove_node_now_p_1 (node))
+ if ((next->callers && next->callers != e)
+ || !can_remove_node_now_p_1 (next))
return false;
return true;
}