diff options
author | Joel Brobecker <brobecker@gnat.com> | 2008-05-09 03:52:11 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2008-05-09 03:52:11 +0000 |
commit | 86c31399870fee8dcfe74e0e64e4cae80db534c4 (patch) | |
tree | 0308eed17bfca92b53ee805f2f9edaa47cc35f05 /gdb | |
parent | 2da12075424805e6e4ef94625032f0029a0c6108 (diff) | |
download | gdb-86c31399870fee8dcfe74e0e64e4cae80db534c4.zip gdb-86c31399870fee8dcfe74e0e64e4cae80db534c4.tar.gz gdb-86c31399870fee8dcfe74e0e64e4cae80db534c4.tar.bz2 |
* frame.c (get_frame_base_address, get_frame_locals_address)
(get_frame_args_address): Pass the correct frame when calling
frame_base_find_by_frame.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/frame.c | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e5da3e4..c27b852 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2008-05-08 Joel Brobecker <brobecker@adacore.com> + + * frame.c (get_frame_base_address, get_frame_locals_address) + (get_frame_args_address): Pass the correct frame when calling + frame_base_find_by_frame. + 2008-05-08 Ulrich Weigand <uweigand@de.ibm.com> * remote.c (extended_remote_attach_1): Call target_find_description. diff --git a/gdb/frame.c b/gdb/frame.c index 3658b0a..45b9b5f 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -1592,7 +1592,7 @@ get_frame_base_address (struct frame_info *fi) if (get_frame_type (fi) != NORMAL_FRAME) return 0; if (fi->base == NULL) - fi->base = frame_base_find_by_frame (fi->next); + fi->base = frame_base_find_by_frame (fi); /* Sneaky: If the low-level unwind and high-level base code share a common unwinder, let them share the prologue cache. */ if (fi->base->unwind == fi->unwind) @@ -1608,7 +1608,7 @@ get_frame_locals_address (struct frame_info *fi) return 0; /* If there isn't a frame address method, find it. */ if (fi->base == NULL) - fi->base = frame_base_find_by_frame (fi->next); + fi->base = frame_base_find_by_frame (fi); /* Sneaky: If the low-level unwind and high-level base code share a common unwinder, let them share the prologue cache. */ if (fi->base->unwind == fi->unwind) @@ -1624,7 +1624,7 @@ get_frame_args_address (struct frame_info *fi) return 0; /* If there isn't a frame address method, find it. */ if (fi->base == NULL) - fi->base = frame_base_find_by_frame (fi->next); + fi->base = frame_base_find_by_frame (fi); /* Sneaky: If the low-level unwind and high-level base code share a common unwinder, let them share the prologue cache. */ if (fi->base->unwind == fi->unwind) |