diff options
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index 857ea30..ae3bc46 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -1251,7 +1251,7 @@ combine_instructions (rtx_insn *f, unsigned int nregs) init_reg_last (); setup_incoming_promotions (first); last_bb = ENTRY_BLOCK_PTR_FOR_FN (cfun); - int max_combine = PARAM_VALUE (PARAM_MAX_COMBINE_INSNS); + int max_combine = param_max_combine_insns; FOR_EACH_BB_FN (this_basic_block, cfun) { @@ -13282,7 +13282,7 @@ record_value_for_reg (rtx reg, rtx_insn *insn, rtx value) { /* If there are two or more occurrences of REG in VALUE, prevent the value from growing too much. */ - if (count_rtxs (tem) > MAX_LAST_VALUE_RTL) + if (count_rtxs (tem) > param_max_last_value_rtl) tem = gen_rtx_CLOBBER (GET_MODE (tem), const0_rtx); } |