aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2024-06-12 14:24:47 -0400
committerDavid Malcolm <dmalcolm@redhat.com>2024-06-12 14:24:47 -0400
commite35f4eab68773b08324f9784ca69f8ace3c657cc (patch)
tree812042bcb36692a3ff04afb29136cc5dfe569368 /gcc
parent439c0cc9f7f6e83b898cabbd2e34f98484b432d3 (diff)
downloadgcc-e35f4eab68773b08324f9784ca69f8ace3c657cc.zip
gcc-e35f4eab68773b08324f9784ca69f8ace3c657cc.tar.gz
gcc-e35f4eab68773b08324f9784ca69f8ace3c657cc.tar.bz2
pretty_printer: unbreak build on aarch64 [PR115465]
I missed this target-specific usage of pretty_printer::buffer when making the fields private in r15-1209-gc5e3be456888aa; sorry. gcc/ChangeLog: PR bootstrap/115465 * config/aarch64/aarch64-early-ra.cc (early_ra::process_block): Update for fields of pretty_printer becoming private in r15-1209-gc5e3be456888aa. Signed-off-by: David Malcolm <dmalcolm@redhat.com>
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/aarch64/aarch64-early-ra.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/aarch64/aarch64-early-ra.cc b/gcc/config/aarch64/aarch64-early-ra.cc
index 1e2c823..9932442 100644
--- a/gcc/config/aarch64/aarch64-early-ra.cc
+++ b/gcc/config/aarch64/aarch64-early-ra.cc
@@ -3446,7 +3446,7 @@ early_ra::process_block (basic_block bb, bool is_isolated)
fprintf (dump_file, "\nBlock %d:\n", bb->index);
fprintf (dump_file, "%6d:", m_current_point);
pretty_printer rtl_slim_pp;
- rtl_slim_pp.buffer->stream = dump_file;
+ rtl_slim_pp.set_output_stream (dump_file);
print_insn (&rtl_slim_pp, insn, 1);
pp_flush (&rtl_slim_pp);
fprintf (dump_file, "\n");