aboutsummaryrefslogtreecommitdiff
path: root/gdb
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
commit1c86fa9704cf0b405a533e2b98a6c609eb0c1e52 (patch)
treef738fe936224fd37ca8b7dca768c2c2049242943 /gdb
parent3f2dad243c971fb4d19dbe40aa2fa9beb8e828ad (diff)
downloadgdb-1c86fa9704cf0b405a533e2b98a6c609eb0c1e52.zip
gdb-1c86fa9704cf0b405a533e2b98a6c609eb0c1e52.tar.gz
gdb-1c86fa9704cf0b405a533e2b98a6c609eb0c1e52.tar.bz2
* mep-tdep.c (mep_analyze_frame_prologue, mep_frame_this_id):
Specify frame type in calls to frame_func_unwind().
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/mep-tdep.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 1ea9d97..2cff817 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2007-03-19 Kevin Buettner <kevinb@redhat.com>
+
+ * mep-tdep.c (mep_analyze_frame_prologue, mep_frame_this_id):
+ Specify frame type in calls to frame_func_unwind().
+
2007-03-13 Daniel Jacobowitz <dan@codesourcery.com>
* rs6000-tdep.c (rs6000_skip_prologue): Use skip_prologue_using_sal.
diff --git a/gdb/mep-tdep.c b/gdb/mep-tdep.c
index 46c8310..632172e 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));
}