diff options
author | Tom Tromey <tom@tromey.com> | 2024-05-27 15:17:51 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2024-05-27 15:17:51 -0600 |
commit | 83dae94abedc22bb6ac7c9ba46bd91ca3fa140bc (patch) | |
tree | 3c4343142a1c8f6d7a6143e1aeabe773184b06c5 /gdb | |
parent | e8c26825728385e24990bb7c2968e79908b02410 (diff) | |
download | gdb-83dae94abedc22bb6ac7c9ba46bd91ca3fa140bc.zip gdb-83dae94abedc22bb6ac7c9ba46bd91ca3fa140bc.tar.gz gdb-83dae94abedc22bb6ac7c9ba46bd91ca3fa140bc.tar.bz2 |
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.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/target-delegates.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c index af6be08..5fb1c80 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; } |