* tree-ssa-reassoc.c (range_entry_cmp): Use q->high instead of
p->high.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@218560
138bc75d-0d04-0410-961f-
82ee72b054a4
+2014-12-10 Marek Polacek <polacek@redhat.com>
+
+ PR tree-optimization/61686
+ * tree-ssa-reassoc.c (range_entry_cmp): Use q->high instead of
+ p->high.
+
2014-12-10 Kito Cheng <kito@0xlab.org>
* doc/libgcc.texi: Update text to match implementation in
else
return -1;
}
- else if (p->high != NULL_TREE)
+ else if (q->high != NULL_TREE)
return 1;
/* If both ranges are the same, sort below by ascending idx. */
}