diff options
author | Lei Liu <lei@sourceware.org> | 2013-02-19 07:50:30 +0000 |
---|---|---|
committer | Lei Liu <lei@sourceware.org> | 2013-02-19 07:50:30 +0000 |
commit | 6ce4c1124bb6579cd7dba278b86d91db3380fa97 (patch) | |
tree | 4201c8a5c1607c2e73d0227d5f37b9ec4c2d1044 | |
parent | 13dbc7852d17fb4ad277cad930870f954bd59764 (diff) | |
download | gdb-6ce4c1124bb6579cd7dba278b86d91db3380fa97.zip gdb-6ce4c1124bb6579cd7dba278b86d91db3380fa97.tar.gz gdb-6ce4c1124bb6579cd7dba278b86d91db3380fa97.tar.bz2 |
2013-02-19 Lei Liu <lei.liu2@windriver.com>
* mips-linux-nat.c (mips64_linux_regsets_store_registers):
Don't check DSP register number if HAVE_DSP is not set.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/mips-linux-nat.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1c511ff..c23e318 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-02-19 Lei Liu <lei.liu2@windriver.com> + + * mips-linux-nat.c (mips64_linux_regsets_store_registers): + Don't check DSP register number if HAVE_DSP is not set. + 2013-02-19 Alan Modra <amodra@gmail.com> * elfread.c (struct build_id): Delete. Use struct elf_build_id diff --git a/gdb/mips-linux-nat.c b/gdb/mips-linux-nat.c index 9e78891..61e83c6 100644 --- a/gdb/mips-linux-nat.c +++ b/gdb/mips-linux-nat.c @@ -326,7 +326,7 @@ mips64_linux_regsets_store_registers (struct target_ops *ops, have_dsp = mips_regnum (gdbarch)->dspctl != -1; if (!have_dsp) is_dsp = 0; - if (regno >= mips_regnum (gdbarch)->dspacc + else if (regno >= mips_regnum (gdbarch)->dspacc && regno < mips_regnum (gdbarch)->dspacc + 6) is_dsp = 1; else if (regno == mips_regnum (gdbarch)->dspctl) |