diff options
author | Pierre Muller <muller@sourceware.org> | 2009-10-21 08:27:25 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2009-10-21 08:27:25 +0000 |
commit | 47607d6f7cc0b855499df28ad8d27e4b16349202 (patch) | |
tree | dbb48466140618a8cc0dc59a9fc909d1ed643ac9 | |
parent | b569affa9479c13908aebdb320d6bcb296bb4bf4 (diff) | |
download | binutils-47607d6f7cc0b855499df28ad8d27e4b16349202.zip binutils-47607d6f7cc0b855499df28ad8d27e4b16349202.tar.gz binutils-47607d6f7cc0b855499df28ad8d27e4b16349202.tar.bz2 |
* rs6000-nat.c (exec_one_dummy_insn): Add missing new ASPACE parameter
to depreacted_insert_raw_breakpoint function call.
* procfs.c (insert_dbx_link_bpt_in_file): Likewise.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/procfs.c | 2 | ||||
-rw-r--r-- | gdb/rs6000-nat.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d586e9f..0154ce7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2009-10-21 Pierre Muller <muller@ics.u-strasbg.fr> + + * rs6000-nat.c (exec_one_dummy_insn): Add missing new ASPACE parameter + to depreacted_insert_raw_breakpoint function call. + * procfs.c (insert_dbx_link_bpt_in_file): Likewise. + 2009-10-20 Michael Snyder <msnyder@vmware.com> * record.c: Add some top-level comments for general explanation. diff --git a/gdb/procfs.c b/gdb/procfs.c index 0f0b5a5..7d7a895 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -5666,7 +5666,7 @@ insert_dbx_link_bpt_in_file (int fd, CORE_ADDR ignored) { /* Insert the breakpoint. */ dbx_link_bpt_addr = sym_addr; - dbx_link_bpt = deprecated_insert_raw_breakpoint (target_gdbarch, + dbx_link_bpt = deprecated_insert_raw_breakpoint (target_gdbarch, NULL, sym_addr); if (dbx_link_bpt == NULL) { diff --git a/gdb/rs6000-nat.c b/gdb/rs6000-nat.c index 8273046..4e6cf96 100644 --- a/gdb/rs6000-nat.c +++ b/gdb/rs6000-nat.c @@ -590,7 +590,7 @@ exec_one_dummy_insn (struct regcache *regcache) assume that this address will never be executed again by the real code. */ - bp = deprecated_insert_raw_breakpoint (gdbarch, DUMMY_INSN_ADDR); + bp = deprecated_insert_raw_breakpoint (gdbarch, NULL, DUMMY_INSN_ADDR); /* You might think this could be done with a single ptrace call, and you'd be correct for just about every platform I've ever worked |