projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3bf5bf5
)
Add missing newline to gdbarch_tdep debugging output
author
Luis Machado
<luis.machado@arm.com>
Mon, 5 Dec 2022 11:00:14 +0000
(11:00 +0000)
committer
Luis Machado
<luis.machado@arm.com>
Mon, 5 Dec 2022 17:16:34 +0000
(17:16 +0000)
The missing newline causes testsuite issues because the gdb prompt gets output
to an unexpected location.
gdb/aarch64-tdep.c
patch
|
blob
|
history
diff --git
a/gdb/aarch64-tdep.c
b/gdb/aarch64-tdep.c
index 07330356fdcb1c0d9f9c8c49dec3331c38ff6501..cf20bb40b7804e5cbf349fd7e376bd6f983237d2 100644
(file)
--- a/
gdb/aarch64-tdep.c
+++ b/
gdb/aarch64-tdep.c
@@
-3807,7
+3807,7
@@
aarch64_dump_tdep (struct gdbarch *gdbarch, struct ui_file *file)
if (tdep == NULL)
return;
- gdb_printf (file, _("aarch64_dump_tdep: Lowest pc = 0x%s"),
+ gdb_printf (file, _("aarch64_dump_tdep: Lowest pc = 0x%s
\n
"),
paddress (gdbarch, tdep->lowest_pc));
}