Commit 2c40d563 by Martin Liska Committed by Martin Liska

s/imposisble/impossible in predict.c

	* predict.c (force_edge_cold): Replace imposisble with
	impossible.

From-SVN: r237651
parent 6252b5db
2016-06-21 Martin Liska <mliska@suse.cz>
* predict.c (force_edge_cold): Replace imposisble with
impossible.
2016-06-21 Ilya Verbin <ilya.verbin@intel.com> 2016-06-21 Ilya Verbin <ilya.verbin@intel.com>
* config/i386/i386.c (ix86_emit_swsqrtsf): Emit vrsqrt28ps. * config/i386/i386.c (ix86_emit_swsqrtsf): Emit vrsqrt28ps.
......
...@@ -3507,7 +3507,7 @@ force_edge_cold (edge e, bool impossible) ...@@ -3507,7 +3507,7 @@ force_edge_cold (edge e, bool impossible)
fprintf (dump_file, "Making edge %i->%i %s by redistributing " fprintf (dump_file, "Making edge %i->%i %s by redistributing "
"probability to other edges.\n", "probability to other edges.\n",
e->src->index, e->dest->index, e->src->index, e->dest->index,
impossible ? "imposisble" : "cold"); impossible ? "impossible" : "cold");
FOR_EACH_EDGE (e2, ei, e->src->succs) FOR_EACH_EDGE (e2, ei, e->src->succs)
if (e2 != e) if (e2 != e)
{ {
...@@ -3533,7 +3533,7 @@ force_edge_cold (edge e, bool impossible) ...@@ -3533,7 +3533,7 @@ force_edge_cold (edge e, bool impossible)
int old_frequency = e->src->frequency; int old_frequency = e->src->frequency;
if (dump_file && (dump_flags & TDF_DETAILS)) if (dump_file && (dump_flags & TDF_DETAILS))
fprintf (dump_file, "Making bb %i %s.\n", e->src->index, fprintf (dump_file, "Making bb %i %s.\n", e->src->index,
impossible ? "imposisble" : "cold"); impossible ? "impossible" : "cold");
e->src->frequency = MIN (e->src->frequency, impossible ? 0 : 1); e->src->frequency = MIN (e->src->frequency, impossible ? 0 : 1);
e->src->count = e->count = RDIV (e->src->count * e->src->frequency, e->src->count = e->count = RDIV (e->src->count * e->src->frequency,
old_frequency); old_frequency);
...@@ -3542,6 +3542,6 @@ force_edge_cold (edge e, bool impossible) ...@@ -3542,6 +3542,6 @@ force_edge_cold (edge e, bool impossible)
else if (dump_file && (dump_flags & TDF_DETAILS) else if (dump_file && (dump_flags & TDF_DETAILS)
&& maybe_hot_bb_p (cfun, e->src)) && maybe_hot_bb_p (cfun, e->src))
fprintf (dump_file, "Giving up on making bb %i %s.\n", e->src->index, fprintf (dump_file, "Giving up on making bb %i %s.\n", e->src->index,
impossible ? "imposisble" : "cold"); impossible ? "impossible" : "cold");
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment