aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorWill Newton <willnewton@sourceware.org>2013-06-07 07:49:10 +0000
committerWill Newton <willnewton@sourceware.org>2013-06-07 07:49:10 +0000
commitfe8400b4383bda9333b559255b63c2c659e9ad5f (patch)
treeb7d6eeb648a8e617a8f83677f62a1d6c5f71ccca /gdb/ChangeLog
parent20df6206ba0b4f41c842646a3f75a6743fb41090 (diff)
downloadgdb-fe8400b4383bda9333b559255b63c2c659e9ad5f.zip
gdb-fe8400b4383bda9333b559255b63c2c659e9ad5f.tar.gz
gdb-fe8400b4383bda9333b559255b63c2c659e9ad5f.tar.bz2
gdb/printcmd.c: Fix printing of Thumb minimal symbols.
In build_address_symbolic we call gdbarch_addr_bits_remove for symbols in the symbol table but not for minimal symbols. This causes a failure in gdb.cp/virtfunc.exp on ARM, as the address of the virtual thunk is given an offset of 1 when in Thumb mode. gdb/ChangeLog: 2013-06-07 Will Newton <will.newton@linaro.org> * printcmd.c (build_address_symbolic): Call gdbarch_addr_bits_remove for text minimal symbols.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 81abaab..6661193 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
2013-06-07 Will Newton <will.newton@linaro.org>
+ * printcmd.c (build_address_symbolic): Call
+ gdbarch_addr_bits_remove for text minimal symbols.
+
+2013-06-07 Will Newton <will.newton@linaro.org>
+
* MAINTAINERS: Add myself to Write After Approval.
2013-06-07 Yao Qi <yao@codesourcery.com>