diff options
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r-- | gcc/gimplify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c index bb50e250213..a65d3d1ced6 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -538,7 +538,7 @@ gimple_add_tmp_var (tree tmp) /* Later processing assumes that the object size is constant, which might not be true at this point. Force the use of a constant upper bound in this case. */ - if (!host_integerp (DECL_SIZE_UNIT (tmp), 1)) + if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (tmp))) force_constant_size (tmp); DECL_CONTEXT (tmp) = current_function_decl; |