* s390-tdep.c (s390_frame_saved_pc_nofix): If the prologue didn't

save the return address register, assume that the return address
is still in there.
This commit is contained in:
Jim Blandy 2001-11-29 05:02:37 +00:00
parent 1491f078cf
commit d0ad30c93c
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2001-11-29 Jim Blandy <jimb@redhat.com>
* s390-tdep.c (s390_frame_saved_pc_nofix): If the prologue didn't
save the return address register, assume that the return address
is still in there.
2001-11-27 Andrew Cagney <ac131313@redhat.com>
* MAINTAINERS: Clarify obvious fix a little (as suggested by Eli

View File

@ -901,6 +901,8 @@ s390_frame_saved_pc_nofix (struct frame_info *fi)
(fi->saved_regs[S390_RETADDR_REGNUM],
S390_GPR_SIZE)));
}
else
return read_register (S390_RETADDR_REGNUM);
}
}
return 0;