From: Martin Jambor Date: Thu, 29 May 2025 14:32:04 +0000 (+0200) Subject: ipa: Fix whitespace when dumping VR in jump_functions X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71e6b7b26a5169d217a62f34acbbc43c592b24bd;p=thirdparty%2Fgcc.git 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 * ipa-prop.cc (ipa_dump_jump_function): Fix whitespace when dumping IPA VRs. --- diff --git a/gcc/ipa-prop.cc b/gcc/ipa-prop.cc index 0398d69962f..24a538034e3 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"); }