summaryrefslogtreecommitdiff
path: root/gdb/mep-tdep.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2007-03-19 19:00:50 +0000
committerKevin Buettner <kevinb@redhat.com>2007-03-19 19:00:50 +0000
commitfbee05c1a637d5d5383953b72dc706acb857586e (patch)
tree676b0fd84c7f6d82e07255b965f0d2cf13fceab3 /gdb/mep-tdep.c
parent91940dac315de66a6a8140d56acc0729cd954ba7 (diff)
downloadgdb-fbee05c1a637d5d5383953b72dc706acb857586e.tar.gz
* mep-tdep.c (mep_analyze_frame_prologue, mep_frame_this_id):
Specify frame type in calls to frame_func_unwind().
Diffstat (limited to 'gdb/mep-tdep.c')
-rw-r--r--gdb/mep-tdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mep-tdep.c b/gdb/mep-tdep.c
index 46c83103f8f..632172eba96 100644
--- a/gdb/mep-tdep.c
+++ b/gdb/mep-tdep.c
@@ -1914,7 +1914,7 @@ mep_analyze_frame_prologue (struct frame_info *next_frame,
*this_prologue_cache
= FRAME_OBSTACK_ZALLOC (struct mep_prologue);
- func_start = frame_func_unwind (next_frame);
+ func_start = frame_func_unwind (next_frame, NORMAL_FRAME);
stop_addr = frame_pc_unwind (next_frame);
/* If we couldn't find any function containing the PC, then
@@ -1965,7 +1965,7 @@ mep_frame_this_id (struct frame_info *next_frame,
struct frame_id *this_id)
{
*this_id = frame_id_build (mep_frame_base (next_frame, this_prologue_cache),
- frame_func_unwind (next_frame));
+ frame_func_unwind (next_frame, NORMAL_FRAME));
}