diff options
author | Martin Jambor <mjambor@suse.cz> | 2022-03-08 11:32:15 +0100 |
---|---|---|
committer | Martin Jambor <mjambor@suse.cz> | 2022-03-08 11:47:56 +0100 |
commit | da2667cb025ec81c0fab438abee0e83c636148aa (patch) | |
tree | 4a7e250ba325824b5286afdfed106edec7542179 | |
parent | dc46350d44c2949ec38deb028960f8040f8e8e5d (diff) | |
download | gcc-da2667cb025ec81c0fab438abee0e83c636148aa.zip gcc-da2667cb025ec81c0fab438abee0e83c636148aa.tar.gz gcc-da2667cb025ec81c0fab438abee0e83c636148aa.tar.bz2 |
params: Remove repeated word "that" in parameter description
One of the mistakes reported in PR 104552 is repeated "that" in
description of ipa-cp-recursive-freq-factor which I introduced. This
patch removes one of them.
gcc/ChangeLog:
2022-03-07 Martin Jambor <mjambor@suse.cz>
PR translation/104552
* params.opt (ipa-cp-recursive-freq-factor): Remove repeated word
"that" in the description.
-rw-r--r-- | gcc/params.opt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/params.opt b/gcc/params.opt index b07663d..f76f783 100644 --- a/gcc/params.opt +++ b/gcc/params.opt @@ -251,7 +251,7 @@ Recursive cloning only when the probability of call being executed exceeds the p -param=ipa-cp-recursive-freq-factor= Common Joined UInteger Var(param_ipa_cp_recursive_freq_factor) Init(6) Param Optimization -When propagating IPA-CP effect estimates, multiply frequencies of recursive edges that that bring back an unchanged value by this factor. +When propagating IPA-CP effect estimates, multiply frequencies of recursive edges that bring back an unchanged value by this factor. -param=ipa-cp-recursion-penalty= Common Joined UInteger Var(param_ipa_cp_recursion_penalty) Init(40) IntegerRange(0, 100) Param Optimization |