diff options
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1422,7 +1422,7 @@ wide_int_to_tree (tree type, const wide_int_ref &pcst) { if (pcst.elt (l - 1) == 0) gcc_checking_assert (pcst.elt (l - 2) < 0); - if (pcst.elt (l - 1) == (HOST_WIDE_INT) -1) + if (pcst.elt (l - 1) == HOST_WIDE_INT_M1) gcc_checking_assert (pcst.elt (l - 2) >= 0); } |