https://gcc.gnu.org/g:71e6b7b26a5169d217a62f34acbbc43c592b24bd
commit r16-959-g71e6b7b26a5169d217a62f34acbbc43c592b24bd Author: Martin Jambor <mjam...@suse.cz> Date: Thu May 29 16:32:04 2025 +0200 ipa: Fix whitespace when dumping VR in jump_functions Lack of white space breakes the tree-visualisation structure and makes the dump unnecessarily difficult to read. gcc/ChangeLog: 2025-05-19 Martin Jambor <mjam...@suse.cz> * ipa-prop.cc (ipa_dump_jump_function): Fix whitespace when dumping IPA VRs. Diff: --- gcc/ipa-prop.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/ipa-prop.cc b/gcc/ipa-prop.cc index 0398d69962f8..24a538034e31 100644 --- a/gcc/ipa-prop.cc +++ b/gcc/ipa-prop.cc @@ -542,6 +542,7 @@ ipa_dump_jump_function (FILE *f, ipa_jump_func *jump_func, if (jump_func->m_vr) { + fprintf (f, " "); jump_func->m_vr->dump (f); fprintf (f, "\n"); }