diff options
author | Daniel Jacobowitz <drow@false.org> | 2005-03-28 19:51:10 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2005-03-28 19:51:10 +0000 |
commit | fce5e386039b00a4fd48ca41cfcaba4e95e99aba (patch) | |
tree | b3f79ec0c7a2280d2baf1c240e91cf9fc7564b97 /gdb/remote-rdi.c | |
parent | 864e8148e917a45ef4d0966e8a4d663f929d0e57 (diff) | |
download | gdb-fce5e386039b00a4fd48ca41cfcaba4e95e99aba.zip gdb-fce5e386039b00a4fd48ca41cfcaba4e95e99aba.tar.gz gdb-fce5e386039b00a4fd48ca41cfcaba4e95e99aba.tar.bz2 |
* remote-rdi.c (arm_rdi_insert_breakpoint): Don't call
arm_pc_is_thumb_dummy.
Diffstat (limited to 'gdb/remote-rdi.c')
-rw-r--r-- | gdb/remote-rdi.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |