+2007-08-31 Nick Clifton <nickc@redhat.com>
+
+ * tree-ssa-coalesce.c (compare_pairs): Use the elements as
+ secondary keys in order to obtain a stable sort.
+
2007-08-31 Nick Clifton <nickc@redhat.com>
PR target/33132
static int
compare_pairs (const void *p1, const void *p2)
{
- return (*(const_coalesce_pair_p const*)p1)->cost
- - (*(const_coalesce_pair_p const*)p2)->cost;
+ const_coalesce_pair_p const * pp1 = p1;
+ const_coalesce_pair_p const * pp2 = p2;
+ int result;
+
+ result = (* pp2)->cost - (* pp1)->cost;
+ /* Since qsort does not guarantee stability we use the elements
+ as a secondary key. This provides us with independence from
+ the host's implementation of the sorting algorithm. */
+ if (result == 0)
+ {
+ result = (* pp2)->first_element - (* pp1)->first_element;
+ if (result == 0)
+ result = (* pp2)->second_element - (* pp1)->second_element;
+ }
+
+ return result;
}