aboutsummaryrefslogtreecommitdiff
path: root/gdb/mips-tdep.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2003-01-28 16:31:11 +0000
committerKevin Buettner <kevinb@redhat.com>2003-01-28 16:31:11 +0000
commitf2c16bd605503a2ff9a98a16ca7049ef4319d690 (patch)
treea2f7842a9d4a129119f5c53ed931e5399bc0397f /gdb/mips-tdep.c
parent1a677ea81e3a5f6f25761f864d27d42210310578 (diff)
downloadgdb-f2c16bd605503a2ff9a98a16ca7049ef4319d690.zip
gdb-f2c16bd605503a2ff9a98a16ca7049ef4319d690.tar.gz
gdb-f2c16bd605503a2ff9a98a16ca7049ef4319d690.tar.bz2
* mips-tdep.c (mips_init_extra_frame_info): Return early for
dummy frames.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r--gdb/mips-tdep.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index 04db937..5898e57 100644
--- a/gdb/mips-tdep.c
+++ b/gdb/mips-tdep.c
@@ -2468,9 +2468,13 @@ static void
mips_init_extra_frame_info (int fromleaf, struct frame_info *fci)
{
int regnum;
+ mips_extra_func_info_t proc_desc;
+
+ if (get_frame_type (fci) == DUMMY_FRAME)
+ return;
/* Use proc_desc calculated in frame_chain */
- mips_extra_func_info_t proc_desc =
+ proc_desc =
get_next_frame (fci)
? cached_proc_desc
: find_proc_desc (get_frame_pc (fci), get_next_frame (fci), 1);