2002-11-24 Pierre Muller <muller@ics.u-strasbg.fr>
* varobj.c (find_frame_addr_in_frame_chain): Use get_frame_base instead of FRAME_FP, obvious fix.
This commit is contained in:
parent
6902388cfe
commit
6abe1021c1
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2002-11-24 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||
|
||||
* varobj.c (find_frame_addr_in_frame_chain):
|
||||
Use get_frame_base instead of FRAME_FP,
|
||||
obvious fix.
|
||||
|
||||
2002-11-19 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* frame.h (FRAME_FP): Delete macro.
|
||||
|
|
|
@ -412,7 +412,7 @@ find_frame_addr_in_frame_chain (CORE_ADDR frame_addr)
|
|||
frame = get_prev_frame (frame);
|
||||
if (frame == NULL)
|
||||
return NULL;
|
||||
if (FRAME_FP (frame) == frame_addr)
|
||||
if (get_frame_base (frame) == frame_addr)
|
||||
return frame;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue