diff options
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5318,7 +5318,7 @@ wi::max_value (const_tree type) inline bool tree_int_cst_lt (const_tree t1, const_tree t2) { - return wi::lts_p (wi::to_widest (t1), wi::to_widest (t2)); + return wi::to_widest (t1) < wi::to_widest (t2); } /* Return true if INTEGER_CST T1 is less than or equal to INTEGER_CST T2, @@ -5327,7 +5327,7 @@ tree_int_cst_lt (const_tree t1, const_tree t2) inline bool tree_int_cst_le (const_tree t1, const_tree t2) { - return wi::les_p (wi::to_widest (t1), wi::to_widest (t2)); + return wi::to_widest (t1) <= wi::to_widest (t2); } /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. T1 and T2 |