* c-common.c (get_nonnull_operand): Use tree_to_uhwi.

From-SVN: r255003
This commit is contained in:
Jakub Jelinek 2017-11-21 14:57:11 +01:00 committed by Jakub Jelinek
parent aa11164a39
commit 7d2f0f9b61
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2017-11-21 Jakub Jelinek <jakub@redhat.com>
* c-common.c (get_nonnull_operand): Use tree_to_uhwi.
PR c++/83059
* c-common.c (get_atomic_generic_size): Use TREE_INT_CST_LOW
instead of tree_to_uhwi, formatting fix.

View File

@ -5359,7 +5359,7 @@ get_nonnull_operand (tree arg_num_expr, unsigned HOST_WIDE_INT *valp)
/* Verify the arg number is a small constant. */
if (tree_fits_uhwi_p (arg_num_expr))
{
*valp = TREE_INT_CST_LOW (arg_num_expr);
*valp = tree_to_uhwi (arg_num_expr);
return true;
}
else