gdb/
2012-11-30 Yao Qi <yao@codesourcery.com> * tic6x-linux-tdep.c (tic6x_register_sigcontext_offset): Don't check REGNUM >= 0.
This commit is contained in:
parent
7a76f5b828
commit
7cd12a76b7
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-11-30 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* tic6x-linux-tdep.c (tic6x_register_sigcontext_offset): Don't
|
||||
check REGNUM >= 0.
|
||||
|
||||
2012-11-30 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* infrun.c: Make the declaration of 'init_infwait_state'
|
||||
|
|
|
@ -63,7 +63,7 @@ tic6x_register_sigcontext_offset (unsigned int regnum, struct gdbarch *gdbarch)
|
|||
else if (regnum == TIC6X_B5_REGNUM || regnum == TIC6X_B5_REGNUM + 2
|
||||
|| regnum == TIC6X_B5_REGNUM + 4)
|
||||
return 4 * (regnum - TIC6X_B5_REGNUM + 19); /* B5, B7, B9 */
|
||||
else if (regnum >= 0 && regnum < TIC6X_A4_REGNUM)
|
||||
else if (regnum < TIC6X_A4_REGNUM)
|
||||
return 4 * (regnum - 0 + 8); /* A0 - A3 */
|
||||
else if (regnum >= TIC6X_B0_REGNUM && regnum < TIC6X_B4_REGNUM)
|
||||
return 4 * (regnum - TIC6X_B0_REGNUM + 15); /* B0 - B3 */
|
||||
|
|
Loading…
Add table
Reference in a new issue