diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-05-01 19:58:55 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-05-01 19:58:55 +0000 |
commit | 5a168c78efc6a75c33bdd11b9c8def6b3cf77212 (patch) | |
tree | 6d7a6ed483d90c77e7c054125b4f9880497f7519 /gdb/ia64-tdep.c | |
parent | e908eab4d89b8f898dc1410895f6e39dc74ed6ad (diff) | |
download | gdb-5a168c78efc6a75c33bdd11b9c8def6b3cf77212.zip gdb-5a168c78efc6a75c33bdd11b9c8def6b3cf77212.tar.gz gdb-5a168c78efc6a75c33bdd11b9c8def6b3cf77212.tar.bz2 |
2005-05-01 Andrew Cagney <cagney@gnu.org>
* gdbarch.sh (deprecated_extract_return_value)
(breakpoint_from_pc, deprecated_store_return_value)
(memory_insert_breakpoint, memory_remove_breakpoint): Change type
of buffer to a bfd_byte pointer.
* gdbarch.h, gdbarch.c: Re-generate.
* mem-break.c (memory_insert_breakpoint)
(memory_remove_breakpoint, default_memory_insert_breakpoint)
(default_memory_remove_breakpoint): Update.
* target.h (memory_insert_breakpoint)
(memory_remove_breakpoint, default_memory_insert_breakpoint)
(default_memory_remove_breakpoint): Update declarations.
(struct target_ops): Update to_insert_breakpoint and
to_remove_breakpoint.
* target.c (debug_to_remove_breakpoint)
(debug_to_insert_breakpoint): Update.
* remote-m32r-sdi.c (m32r_remove_breakpoint)
(m32r_insert_breakpoint): Update.
* m32r-tdep.c (m32r_memory_insert_breakpoint)
(m32r_memory_remove_breakpoint): Update.
* remote-e7000.c (e7000_insert_breakpoint)
(e7000_remove_breakpoint): Update.
* remote-rdi.c (arm_rdi_insert_breakpoint)
(arm_rdi_remove_breakpoint): Update.
* remote-sim.c (gdbsim_insert_breakpoint)
(gdbsim_remove_breakpoint): Update.
* exec.c (ignore): Update.
* rs6000-tdep.c (rs6000_extract_return_value): Update.
* ia64-tdep.c (ia64_memory_insert_breakpoint)
(ia64_memory_remove_breakpoint): Update.
* remote-rdp.c (remote_rdp_insert_breakpoint)
(remote_rdp_remove_breakpoint): Update.
Diffstat (limited to 'gdb/ia64-tdep.c')
-rw-r--r-- | gdb/ia64-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ia64-tdep.c b/gdb/ia64-tdep.c index 0a89ed9..e75569c 100644 --- a/gdb/ia64-tdep.c +++ b/gdb/ia64-tdep.c @@ -523,7 +523,7 @@ fetch_instruction (CORE_ADDR addr, instruction_type *it, long long *instr) #define IA64_BREAKPOINT 0x00003333300LL static int -ia64_memory_insert_breakpoint (CORE_ADDR addr, char *contents_cache) +ia64_memory_insert_breakpoint (CORE_ADDR addr, bfd_byte *contents_cache) { char bundle[BUNDLE_LEN]; int slotnum = (int) (addr & 0x0f) / SLOT_MULTIPLIER; @@ -556,7 +556,7 @@ ia64_memory_insert_breakpoint (CORE_ADDR addr, char *contents_cache) } static int -ia64_memory_remove_breakpoint (CORE_ADDR addr, char *contents_cache) +ia64_memory_remove_breakpoint (CORE_ADDR addr, bfd_byte *contents_cache) { char bundle[BUNDLE_LEN]; int slotnum = (addr & 0x0f) / SLOT_MULTIPLIER; |