Index: ChangeLog
2004-09-12 Salvador E. Tropea <set@users.sf.net> Andrew Cagney <cagney@gnu.org> * mi/mi-main.c (mi_cmd_data_list_changed_registers) (mi_cmd_data_list_register_values) (mi_cmd_data_write_register_values): Include the PSEUDO_REGS in the register number computation.
This commit is contained in:
parent
5bf970f936
commit
28b41c52e2
2 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
|||
2004-09-12 Salvador E. Tropea <set@users.sf.net>
|
||||
Andrew Cagney <cagney@gnu.org>
|
||||
|
||||
* mi/mi-main.c (mi_cmd_data_list_changed_registers)
|
||||
(mi_cmd_data_list_register_values)
|
||||
(mi_cmd_data_write_register_values): Include the PSEUDO_REGS in
|
||||
the register number computation.
|
||||
|
||||
2004-09-12 Andrew Cagney <cagney@gnu.org>
|
||||
|
||||
* ppcnbsd-nat.c: Include "inf-ptrace.h".
|
||||
|
|
|
@ -327,7 +327,7 @@ mi_cmd_data_list_changed_registers (char *command, char **argv, int argc)
|
|||
case, some entries of REGISTER_NAME will change depending upon
|
||||
the particular processor being debugged. */
|
||||
|
||||
numregs = NUM_REGS;
|
||||
numregs = NUM_REGS + NUM_PSEUDO_REGS;
|
||||
|
||||
cleanup = make_cleanup_ui_out_list_begin_end (uiout, "changed-registers");
|
||||
|
||||
|
@ -423,7 +423,7 @@ mi_cmd_data_list_register_values (char *command, char **argv, int argc)
|
|||
case, some entries of REGISTER_NAME will change depending upon
|
||||
the particular processor being debugged. */
|
||||
|
||||
numregs = NUM_REGS;
|
||||
numregs = NUM_REGS + NUM_PSEUDO_REGS;
|
||||
|
||||
if (argc == 0)
|
||||
{
|
||||
|
@ -563,7 +563,7 @@ mi_cmd_data_write_register_values (char *command, char **argv, int argc)
|
|||
case, some entries of REGISTER_NAME will change depending upon
|
||||
the particular processor being debugged. */
|
||||
|
||||
numregs = NUM_REGS;
|
||||
numregs = NUM_REGS + NUM_PSEUDO_REGS;
|
||||
|
||||
if (argc == 0)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue