diff options
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index 3fc2d0e..41878a9 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -2997,7 +2997,8 @@ assign_parm_setup_block (struct assign_parm_data_all *all, to the value directly in mode MODE, otherwise we must start with the register in word_mode and explicitly convert it. */ - if (TRULY_NOOP_TRUNCATION (size * BITS_PER_UNIT, BITS_PER_WORD)) + if (targetm.truly_noop_truncation (size * BITS_PER_UNIT, + BITS_PER_WORD)) reg = gen_rtx_REG (mode, REGNO (entry_parm)); else { |