* m88k-nat.c (fill_gregset): Fix typo (R_SFIP -> R_FIP).

This commit is contained in:
Jim Kingdon 1993-10-01 00:51:41 +00:00
parent 650a49f055
commit 3d8536f365
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,10 @@
Thu Sep 30 11:30:56 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* m88k-nat.c (fill_gregset): Fix typo (R_SFIP -> R_FIP).
* c-typeprint.c (c_type_print_base, TYPE_FN_FIELD_STUB code):
If demangled name lacks a colon, don't dump core.
* blockframe.c (find_pc_partial_function): If pst->readin is
set, don't try to get symbols from pst.

View File

@ -264,7 +264,7 @@ fill_gregset (gregsetp, regno)
if ((regno == -1) || (regno == SNIP_REGNUM))
*(regp + R_NIP) = *(int *) &registers[REGISTER_BYTE(SNIP_REGNUM)];
if ((regno == -1) || (regno == SFIP_REGNUM))
*(regp + R_SFIP) = *(int *) &registers[REGISTER_BYTE(SFIP_REGNUM)];
*(regp + R_FIP) = *(int *) &registers[REGISTER_BYTE(SFIP_REGNUM)];
if ((regno == -1) || (regno == PSR_REGNUM))
*(regp + R_PSR) = *(int *) &registers[REGISTER_BYTE(PSR_REGNUM)];
if ((regno == -1) || (regno == FPSR_REGNUM))