* alphanbsd-tdep.c (alphanbsd_sigcontext_addr): Replace
references to struct frame_info fields by calls to the equivalent accessors. Necessary now that frame_info is opaque.
This commit is contained in:
parent
4035536ba4
commit
f534e522c9
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2003-06-03 J. Brobecker <brobecker@gnat.com>
|
||||||
|
|
||||||
|
* alphanbsd-tdep.c (alphanbsd_sigcontext_addr): Replace
|
||||||
|
references to struct frame_info fields by calls to the equivalent
|
||||||
|
accessors. Necessary now that frame_info is opaque.
|
||||||
|
|
||||||
2003-06-03 J. Brobecker <brobecker@gnat.com>
|
2003-06-03 J. Brobecker <brobecker@gnat.com>
|
||||||
|
|
||||||
* alphanbsd-tdep.c (alphanbsd_skip_sigtramp_frame): Delete.
|
* alphanbsd-tdep.c (alphanbsd_skip_sigtramp_frame): Delete.
|
||||||
|
|
|
@ -189,7 +189,7 @@ alphanbsd_sigcontext_addr (struct frame_info *frame)
|
||||||
/* FIXME: This is not correct for all versions of NetBSD/alpha.
|
/* FIXME: This is not correct for all versions of NetBSD/alpha.
|
||||||
We will probably need to disassemble the trampoline to figure
|
We will probably need to disassemble the trampoline to figure
|
||||||
out which trampoline frame type we have. */
|
out which trampoline frame type we have. */
|
||||||
return frame->frame;
|
return get_frame_base (frame);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue