aboutsummaryrefslogtreecommitdiff
path: root/gdb/a29k-tdep.c
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-07-07 20:29:56 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-07-07 20:29:56 +0000
commit23a8e2915cfa83f8cac60e61e1b414a7aeab198e (patch)
tree5ebb4da63b33de2d086d84e2cea8479d650a5ff7 /gdb/a29k-tdep.c
parente154ecf4ab067beccde639b61a166eb9ebc7c0c3 (diff)
downloadgdb-23a8e2915cfa83f8cac60e61e1b414a7aeab198e.zip
gdb-23a8e2915cfa83f8cac60e61e1b414a7aeab198e.tar.gz
gdb-23a8e2915cfa83f8cac60e61e1b414a7aeab198e.tar.bz2
* frame.h, blockframe.c, stack.c, a29k-tdep.c,
config/gould/tmp-{pn,np1}.h, config/{sparc/tm-sparc.h,pyr/tm-pyr.h,vax/tm-vax.h}: Remove field next_frame from struct frame_info. It has no purpose beyond ->next->frame and is an artifact from GDB 2.8.
Diffstat (limited to 'gdb/a29k-tdep.c')
-rw-r--r--gdb/a29k-tdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/a29k-tdep.c b/gdb/a29k-tdep.c
index dfb8398..fd90a2b 100644
--- a/gdb/a29k-tdep.c
+++ b/gdb/a29k-tdep.c
@@ -377,7 +377,7 @@ init_frame_info (innermost_frame, fci)
if (innermost_frame)
fci->frame = read_register (GR1_REGNUM);
else
- fci->frame = fci->next_frame + fci->next->rsize;
+ fci->frame = fci->next->frame + fci->next->rsize;
#if CALL_DUMMY_LOCATION == ON_STACK
This wont work;