diff options
author | Daniel Jacobowitz <drow@false.org> | 2005-03-28 19:52:12 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2005-03-28 19:52:12 +0000 |
commit | f9ac249c881eade65a57e2e20ebeb63f2b570b11 (patch) | |
tree | c5c5a2a30038fba2ca6d6c50c2751fb451c737b5 | |
parent | a2c71cf2eaa858c5eb4fa39a3d52d2aec3e5db9a (diff) | |
download | gdb-f9ac249c881eade65a57e2e20ebeb63f2b570b11.zip gdb-f9ac249c881eade65a57e2e20ebeb63f2b570b11.tar.gz gdb-f9ac249c881eade65a57e2e20ebeb63f2b570b11.tar.bz2 |
* gdb/remote-rdi.c (arm_rdi_insert_breakpoint): Don't call
arm_pc_is_thumb_dummy.
-rw-r--r-- | ChangeLog.csl | 5 | ||||
-rw-r--r-- | gdb/remote-rdi.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl index 5991149..3bc6a8e 100644 --- a/ChangeLog.csl +++ b/ChangeLog.csl @@ -1,3 +1,8 @@ +2005-03-28 Daniel Jacobowitz <dan@codesourcery.com> + + * gdb/remote-rdi.c (arm_rdi_insert_breakpoint): Don't call + arm_pc_is_thumb_dummy. + 2005-03-28 Mark Mitchell <mark@codesourcery.com> * readline/Makefile.in (RLTTYOBJ): New variable. diff --git a/gdb/remote-rdi.c b/gdb/remote-rdi.c index 75a6e53..b50da48 100644 --- a/gdb/remote-rdi.c +++ b/gdb/remote-rdi.c @@ -675,7 +675,7 @@ arm_rdi_insert_breakpoint (CORE_ADDR addr, char *contents_cache) struct local_bp_list_entry *entry; int type = RDIPoint_EQ; - if (arm_pc_is_thumb (addr) || arm_pc_is_thumb_dummy (addr)) + if (arm_pc_is_thumb (addr)) type |= RDIPoint_16Bit; rslt = angel_RDI_setbreak (addr, type, 0, &point); if (rslt != RDIError_NoError) |