From: Tom Tromey Date: Mon, 27 May 2024 21:17:51 +0000 (-0600) Subject: Re-run make-target-delegates.py X-Git-Tag: binutils-2_43~605 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=83dae94abedc22bb6ac7c9ba46bd91ca3fa140bc;p=thirdparty%2Fbinutils-gdb.git Re-run make-target-delegates.py I re-ran make-target-delegates.py and discovered that the tree was out of sync. This patch corrects the problem. --- diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c index af6be0884a1..5fb1c80a9c3 100644 --- a/gdb/target-delegates.c +++ b/gdb/target-delegates.c @@ -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; }