diff options
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r-- | gcc/stor-layout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index ac7fb744f66..66395a9c86b 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -2097,8 +2097,8 @@ get_mode_bounds (enum machine_mode mode, int sign, max_val = ((unsigned HOST_WIDE_INT) 1 << (size - 1) << 1) - 1; } - *mmin = GEN_INT (trunc_int_for_mode (min_val, target_mode)); - *mmax = GEN_INT (trunc_int_for_mode (max_val, target_mode)); + *mmin = gen_int_mode (min_val, target_mode); + *mmax = gen_int_mode (max_val, target_mode); } #include "gt-stor-layout.h" |