Use frame address if arg pointer isn't available.
This commit is contained in:
parent
23c156a2ad
commit
7b8ca0a03f
@ -1,5 +1,8 @@
|
||||
Tue Jul 14 16:59:46 1992 Ken Raeburn (raeburn@cygnus.com)
|
||||
|
||||
* i960-tdep.c (frame_args_address): If arg pointer can't be found,
|
||||
use frame address.
|
||||
|
||||
* buildsym.c (read_struct_type): Don't die on TYPE_CODE_UNDEF
|
||||
nodes as base classes.
|
||||
|
||||
|
@ -410,6 +410,8 @@ frame_args_address (fi, must_be_correct)
|
||||
ap = 0;
|
||||
else
|
||||
ap = read_register (G14_REGNUM);
|
||||
if (ap == 0)
|
||||
ap = fi->frame;
|
||||
}
|
||||
fi->arg_pointer = ap; /* Cache it for next time */
|
||||
return ap;
|
||||
|
Loading…
x
Reference in New Issue
Block a user