diff options
author | Joel Brobecker <brobecker@gnat.com> | 2003-06-04 05:50:35 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2003-06-04 05:50:35 +0000 |
commit | f534e522c9338a9d83ebe849127a9187312fb6be (patch) | |
tree | 908bccdb5d8fcd9b92f1f4560996209cc36c52ec /gdb/alphanbsd-tdep.c | |
parent | 4035536ba42162e512bc4462faad04c908c9f0f9 (diff) | |
download | binutils-f534e522c9338a9d83ebe849127a9187312fb6be.zip binutils-f534e522c9338a9d83ebe849127a9187312fb6be.tar.gz binutils-f534e522c9338a9d83ebe849127a9187312fb6be.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/alphanbsd-tdep.c')
-rw-r--r-- | gdb/alphanbsd-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/alphanbsd-tdep.c b/gdb/alphanbsd-tdep.c index 4a6faf3..0fdbb63 100644 --- a/gdb/alphanbsd-tdep.c +++ b/gdb/alphanbsd-tdep.c @@ -189,7 +189,7 @@ alphanbsd_sigcontext_addr (struct frame_info *frame) /* FIXME: This is not correct for all versions of NetBSD/alpha. We will probably need to disassemble the trampoline to figure out which trampoline frame type we have. */ - return frame->frame; + return get_frame_base (frame); } static void |