aboutsummaryrefslogtreecommitdiff
path: root/gdb/ia64-tdep.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2011-12-14 14:55:27 +0000
committerPedro Alves <palves@redhat.com>2011-12-14 14:55:27 +0000
commitdd110abf0474d4e6d8af047d4c7f8d9b340559ef (patch)
treebe951a9e52fdb5a9cf87c4ef68b29a768385f7d7 /gdb/ia64-tdep.c
parent2fb860fcbc80b76dbd84958e547ddf1bdd1c4417 (diff)
downloadgdb-dd110abf0474d4e6d8af047d4c7f8d9b340559ef.zip
gdb-dd110abf0474d4e6d8af047d4c7f8d9b340559ef.tar.gz
gdb-dd110abf0474d4e6d8af047d4c7f8d9b340559ef.tar.bz2
2011-12-14 Pedro Alves <pedro@codesourcery.com>
* ia64-tdep.c (ia64_memory_remove_breakpoint): Use target_write_raw_memory. * m32r-tdep.c (m32r_memory_remove_breakpoint): Use target_write_raw_memory. * microblaze-linux-tdep.c (microblaze_linux_memory_remove_breakpoint): Use target_write_raw_memory. * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Use target_write_raw_memory.
Diffstat (limited to 'gdb/ia64-tdep.c')
-rw-r--r--gdb/ia64-tdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ia64-tdep.c b/gdb/ia64-tdep.c
index 68e5021..d1940e6 100644
--- a/gdb/ia64-tdep.c
+++ b/gdb/ia64-tdep.c
@@ -811,7 +811,7 @@ ia64_memory_remove_breakpoint (struct gdbarch *gdbarch,
/* In BUNDLE_MEM, be careful to modify only the bits belonging to SLOTNUM
and not any of the other ones that are stored in SHADOW_CONTENTS. */
replace_slotN_contents (bundle_mem, instr_saved, slotnum);
- val = target_write_memory (addr, bundle_mem, BUNDLE_LEN);
+ val = target_write_raw_memory (addr, bundle_mem, BUNDLE_LEN);
do_cleanups (cleanup);
return val;