* c-common.c (get_nonnull_operand): Use tree_to_uhwi.
From-SVN: r255003
This commit is contained in:
parent
aa11164a39
commit
7d2f0f9b61
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user