diff options
Diffstat (limited to 'gdb/m32r-tdep.c')
-rw-r--r-- | gdb/m32r-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/m32r-tdep.c b/gdb/m32r-tdep.c index 9e477f3..fa40064 100644 --- a/gdb/m32r-tdep.c +++ b/gdb/m32r-tdep.c @@ -536,7 +536,7 @@ m32r_frame_unwind_cache (struct frame_info *next_frame, info->uses_frame = 0; scan_limit = frame_pc_unwind (next_frame); - for (pc = frame_func_unwind (next_frame); + for (pc = frame_func_unwind (next_frame, NORMAL_FRAME); pc > 0 && pc < scan_limit; pc += 2) { if ((pc & 2) == 0) @@ -835,7 +835,7 @@ m32r_frame_this_id (struct frame_info *next_frame, struct frame_id id; /* The FUNC is easy. */ - func = frame_func_unwind (next_frame); + func = frame_func_unwind (next_frame, NORMAL_FRAME); /* Check if the stack is empty. */ msym_stack = lookup_minimal_symbol ("_stack", NULL, NULL); |