diff options
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 3420e22..d793063 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -1136,7 +1136,7 @@ get_block_for_decl (tree decl) constant size. */ if (DECL_SIZE_UNIT (decl) == NULL) return NULL; - if (!host_integerp (DECL_SIZE_UNIT (decl), 1)) + if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (decl))) return NULL; /* Find out which section should contain DECL. We cannot put it into |