summaryrefslogtreecommitdiff
path: root/gcc/cfghooks.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2020-02-25 22:10:48 +0100
committerJakub Jelinek <jakub@redhat.com>2020-02-25 22:10:48 +0100
commit9c3da8cc5d01dcccfd98cda20753081414f12877 (patch)
tree5af30e712860d104c3f805afc1a358d3617d68df /gcc/cfghooks.c
parent68f8763d57ab6e90f9d78ec0b0e6b71241676a5c (diff)
typo fix: Fix probablity, becuse, sucessor and destinarion typos [PR93912]
2020-02-25 Jakub Jelinek <jakub@redhat.com> PR other/93912 * config/sh/sh.c (expand_cbranchdi4): Fix comment typo, probablity -> probability. * cfghooks.c (verify_flow_info): Likewise. * predict.c (combine_predictions_for_bb): Likewise. * bb-reorder.c (connect_better_edge_p): Likewise. Fix comment typo, sucessor -> successor. (find_traces_1_round): Fix comment typo, destinarion -> destination. * omp-expand.c (expand_oacc_for): Fix comment typo, sucessors -> successors. * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Fix dump message typo, sucessors -> successors. c/ * gimple-parser.c (c_parser_gimple_parse_bb_spec_edge_probability): Rename last argument from probablity to probability.
Diffstat (limited to 'gcc/cfghooks.c')
-rw-r--r--gcc/cfghooks.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfghooks.c b/gcc/cfghooks.c
index db8623211e4..ea558b46947 100644
--- a/gcc/cfghooks.c
+++ b/gcc/cfghooks.c
@@ -153,7 +153,7 @@ verify_flow_info (void)
err = 1;
}
/* FIXME: Graphite and SLJL and target code still tends to produce
- edges with no probablity. */
+ edges with no probability. */
if (profile_status_for_fn (cfun) >= PROFILE_GUESSED
&& !bb->count.initialized_p () && !flag_graphite && 0)
{
@@ -170,7 +170,7 @@ verify_flow_info (void)
err = 1;
}
/* FIXME: Graphite and SLJL and target code still tends to produce
- edges with no probablity. */
+ edges with no probability. */
if (profile_status_for_fn (cfun) >= PROFILE_GUESSED
&& !e->probability.initialized_p () && !flag_graphite && 0)
{