aboutsummaryrefslogtreecommitdiff
path: root/gcc/params.def
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2017-05-26 13:05:52 +0200
committerMartin Liska <marxin@gcc.gnu.org>2017-05-26 11:05:52 +0000
commite929e6115e278e8aa3f2df2d76dbd279f6c5195d (patch)
tree566b779c448375cb17c7dab450f987ce13b41fc1 /gcc/params.def
parent92f105f65dc6b370d098904c6726216c622cd64a (diff)
downloadgcc-e929e6115e278e8aa3f2df2d76dbd279f6c5195d.zip
gcc-e929e6115e278e8aa3f2df2d76dbd279f6c5195d.tar.gz
gcc-e929e6115e278e8aa3f2df2d76dbd279f6c5195d.tar.bz2
Bound partial-inlining-entry-probability param (PR ipa/80663).
2017-05-26 Martin Liska <mliska@suse.cz> PR ipa/80663 * params.def: Bound partial-inlining-entry-probability param. 2017-05-26 Martin Liska <mliska@suse.cz> PR ipa/80663 * g++.dg/ipa/pr80212.C: Remove the test as it does not longer split at the problematic spot. * gcc.dg/ipa/pr48195.c: Change 101 to 100 as 101 is no longer a valid value of the param. From-SVN: r248489
Diffstat (limited to 'gcc/params.def')
-rw-r--r--gcc/params.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/params.def b/gcc/params.def
index 1b058e4..6b07518 100644
--- a/gcc/params.def
+++ b/gcc/params.def
@@ -126,7 +126,7 @@ DEFPARAM (PARAM_COMDAT_SHARING_PROBABILITY,
DEFPARAM (PARAM_PARTIAL_INLINING_ENTRY_PROBABILITY,
"partial-inlining-entry-probability",
"Maximum probability of the entry BB of split region (in percent relative to entry BB of the function) to make partial inlining happen.",
- 70, 0, 0)
+ 70, 0, 100)
/* Limit the number of expansions created by the variable expansion
optimization to avoid register pressure. */