]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Re-run make-target-delegates.py
authorTom Tromey <tom@tromey.com>
Mon, 27 May 2024 21:17:51 +0000 (15:17 -0600)
committerTom Tromey <tom@tromey.com>
Mon, 27 May 2024 21:17:51 +0000 (15:17 -0600)
I re-ran make-target-delegates.py and discovered that the tree was out
of sync.  This patch corrects the problem.

gdb/target-delegates.c

index af6be0884a1bda6aa275ad36ea9e975d33a0e96d..5fb1c80a9c3aea70c9fc8c1cf4b038ac27ce218a 100644 (file)
@@ -4377,16 +4377,14 @@ dummy_target::is_address_tagged (gdbarch *arg0, CORE_ADDR arg1)
 bool
 debug_target::is_address_tagged (gdbarch *arg0, CORE_ADDR arg1)
 {
-  gdb_printf (gdb_stdlog, "-> %s->is_address_tagged (...)\n", this->beneath ()->shortname ());
+  target_debug_printf_nofunc ("-> %s->is_address_tagged (...)", this->beneath ()->shortname ());
   bool result
     = this->beneath ()->is_address_tagged (arg0, arg1);
-  gdb_printf (gdb_stdlog, "<- %s->is_address_tagged (", this->beneath ()->shortname ());
-  target_debug_print_gdbarch_p (arg0);
-  gdb_puts (", ", gdb_stdlog);
-  target_debug_print_CORE_ADDR (arg1);
-  gdb_puts (") = ", gdb_stdlog);
-  target_debug_print_bool (result);
-  gdb_puts ("\n", gdb_stdlog);
+  target_debug_printf_nofunc ("<- %s->is_address_tagged (%s, %s) = %s",
+             this->beneath ()->shortname (),
+             target_debug_print_gdbarch_p (arg0).c_str (),
+             target_debug_print_CORE_ADDR (arg1).c_str (),
+             target_debug_print_bool (result).c_str ());
   return result;
 }