diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/params.def | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 766556bf190..eef65f3d6a0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2015-02-27 Vladimir Makarov <vmakarov@redhat.com> + * params.def (PARAM_LRA_INHERITANCE_EBB_PROBABILITY_CUTOFF): Fix + a typo in the description. + +2015-02-27 Vladimir Makarov <vmakarov@redhat.com> + PR target/64317 * params.def (PARAM_LRA_INHERITANCE_EBB_PROBABILITY_CUTOFF): New. * params.h (LRA_INHERITANCE_EBB_PROBABILITY_CUTOFF): New. diff --git a/gcc/params.def b/gcc/params.def index 905c9e26792..f890cb0e176 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -838,7 +838,7 @@ DEFPARAM (PARAM_LRA_MAX_CONSIDERED_RELOAD_PSEUDOS, DEFPARAM (PARAM_LRA_INHERITANCE_EBB_PROBABILITY_CUTOFF, "lra-inheritance-ebb-probability-cutoff", - "Minimal fall-through edge probability in percentage used to add BB to inheritance EEB in LRA", + "Minimal fall-through edge probability in percentage used to add BB to inheritance EBB in LRA", 40, 0, 100) /* Switch initialization conversion will refuse to create arrays that are |