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 /gdb/rs6000-nat.c | |
parent | b569affa9479c13908aebdb320d6bcb296bb4bf4 (diff) | |
download | gdb-47607d6f7cc0b855499df28ad8d27e4b16349202.zip gdb-47607d6f7cc0b855499df28ad8d27e4b16349202.tar.gz gdb-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.
Diffstat (limited to 'gdb/rs6000-nat.c')
-rw-r--r-- | gdb/rs6000-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |