Message ID | 5E189AFD-E9DE-4FCF-B9D3-90FCDBA17D32@comcast.net |
---|---|
State | New |
Headers | show |
On 01/01/2014 09:41 PM, Mike Stump wrote:
> Jason, are the C++ patches with this change to them Ok?
Yes.
Jason
Index: cp/tree.c =================================================================== --- cp/tree.c (revision 206183) +++ cp/tree.c (working copy) @@ -2606,7 +2606,7 @@ cp_tree_equal (tree t1, tree t2) switch (code1) { case INTEGER_CST: - return wi::to_widest (t1) == wi::to_widest (t2); + return tree_int_cst_equal (t1, t2); case REAL_CST: return REAL_VALUES_EQUAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));