Hi.
The patch cleans up typos in a dump message in IPA ICF pass.
I'm going to install the patch.
Thanks,
Martin
gcc/ChangeLog:
2019-11-25 Martin Liska <[email protected]>
* ipa-icf.c (sem_item_optimizer::dump_cong_classes): Clean
up used dump message.
---
gcc/ipa-icf.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gcc/ipa-icf.c b/gcc/ipa-icf.c
index 20e92e12bab..bec7cbc7201 100644
--- a/gcc/ipa-icf.c
+++ b/gcc/ipa-icf.c
@@ -3151,8 +3151,7 @@ sem_item_optimizer::dump_cong_classes (void)
"class: %u)\n", (unsigned long) m_classes.elements (),
m_items.length (), m_items.length () - single_element_classes);
fprintf (dump_file,
- "Class size histogram [num of members]: number of classe number "
- "of classess\n");
+ "Class size histogram [number of members]: number of classes\n");
for (unsigned int i = 0; i <= max_index; i++)
if (histogram[i])
fprintf (dump_file, "%6u: %6u\n", i, histogram[i]);