From: Martin Jambor Date: Tue, 3 Oct 2023 16:44:52 +0000 (+0200) Subject: ipa-modref: Fix dumping X-Git-Tag: basepoints/gcc-15~5755 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed8fe3b1203b936d870d1ab79e66d34f9c955738;p=thirdparty%2Fgcc.git ipa-modref: Fix dumping Function dump_lto_records ought to dump to its parameter OUT but was dumping expressions to dump_file. This is corrected by this patch and while at at, I also made the modref_summary::dump member function const so that it is callable from more contexts. gcc/ChangeLog: 2023-09-21 Martin Jambor * ipa-modref.h (modref_summary::dump): Make const. * ipa-modref.cc (modref_summary::dump): Likewise. (dump_lto_records): Dump to out instead of dump_file. --- diff --git a/gcc/ipa-modref.cc b/gcc/ipa-modref.cc index c04f9f44c064..fe55621f0078 100644 --- a/gcc/ipa-modref.cc +++ b/gcc/ipa-modref.cc @@ -474,7 +474,7 @@ dump_lto_records (modref_records_lto *tt, FILE *out) FOR_EACH_VEC_SAFE_ELT (tt->bases, i, n) { fprintf (out, " Base %i:", (int)i); - print_generic_expr (dump_file, n->base); + print_generic_expr (out, n->base); fprintf (out, " (alias set %i)\n", n->base ? get_alias_set (n->base) : 0); if (n->every_ref) @@ -487,7 +487,7 @@ dump_lto_records (modref_records_lto *tt, FILE *out) FOR_EACH_VEC_SAFE_ELT (n->refs, j, r) { fprintf (out, " Ref %i:", (int)j); - print_generic_expr (dump_file, r->ref); + print_generic_expr (out, r->ref); fprintf (out, " (alias set %i)\n", r->ref ? get_alias_set (r->ref) : 0); if (r->every_access) @@ -567,7 +567,7 @@ remove_modref_edge_summaries (cgraph_node *node) /* Dump summary. */ void -modref_summary::dump (FILE *out) +modref_summary::dump (FILE *out) const { if (loads) { diff --git a/gcc/ipa-modref.h b/gcc/ipa-modref.h index 2a2d31e86dbe..f7dedace2da9 100644 --- a/gcc/ipa-modref.h +++ b/gcc/ipa-modref.h @@ -66,7 +66,7 @@ struct GTY(()) modref_summary modref_summary (); ~modref_summary (); - void dump (FILE *); + void dump (FILE *) const; bool useful_p (int ecf_flags, bool check_flags = true); void finalize (tree); };