Message ID | 1436463157-15292-1-git-send-email-rep.dot.nop@gmail.com |
---|---|
State | New |
Headers | show |
On 07/09/2015 11:32 AM, Bernhard Reutner-Fischer wrote: > gcc/ChangeLog > > 2015-07-09 Bernhard Reutner-Fischer <aldot@gcc.gnu.org> > > * ipa-icf.c (sem_item_optimizer::do_congruence_step): Fix typo > in dump message. > > Ok for trunk if testing passes? > Hmz, that's obvious, will commit tomorrow after the regstrap during > night. Yes, it's obvious :-) Testing is still warranted because someone might have be scanning dumps in the testsuite and have the same typo there. I've been bitten by that myself in the past. Jeff
diff --git a/gcc/ipa-icf.c b/gcc/ipa-icf.c index 691c90d..82dcbc3 100644 --- a/gcc/ipa-icf.c +++ b/gcc/ipa-icf.c @@ -3205,7 +3205,7 @@ sem_item_optimizer::do_congruence_step (congruence_class *cls) EXECUTE_IF_SET_IN_BITMAP (usage, 0, i, bi) { if (dump_file && (dump_flags & TDF_DETAILS)) - fprintf (dump_file, " processing congruece step for class: %u, index: %u\n", + fprintf (dump_file, " processing congruence step for class: %u, index: %u\n", cls->id, i); do_congruence_step_for_index (cls, i);