summaryrefslogtreecommitdiff
path: root/gdb/blockframe.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2002-08-09 18:26:15 +0000
committerKevin Buettner <kevinb@redhat.com>2002-08-09 18:26:15 +0000
commitdaaecd6a1e6ec5269808187ec69936a499dfb08d (patch)
treec09bae90819a55eb445af5527a0aa9d1080f1e5d /gdb/blockframe.c
parent9f6de91311bd436b90f1695fce3d93145ae6d154 (diff)
downloadgdb-daaecd6a1e6ec5269808187ec69936a499dfb08d.tar.gz
* blockframe.c (frame_saved_regs_register_unwind): Revise
PC_IN_CALL_DUMMY assertion to only apply when generic dummy frames are in use.
Diffstat (limited to 'gdb/blockframe.c')
-rw-r--r--gdb/blockframe.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/blockframe.c b/gdb/blockframe.c
index 93a4765e7d5..d255beecc1f 100644
--- a/gdb/blockframe.c
+++ b/gdb/blockframe.c
@@ -1410,7 +1410,11 @@ frame_saved_regs_register_unwind (struct frame_info *frame, void **cache,
/* There is always a frame at this point. And THIS is the frame
we're interested in. */
gdb_assert (frame != NULL);
- gdb_assert (!PC_IN_CALL_DUMMY (frame->pc, frame->frame, frame->frame));
+ /* If we're using generic dummy frames, we'd better not be in a call
+ dummy. (generic_call_dummy_register_unwind ought to have been called
+ instead.) */
+ gdb_assert (!(USE_GENERIC_DUMMY_FRAMES
+ && PC_IN_CALL_DUMMY (frame->pc, frame->frame, frame->frame)));
/* Load the saved_regs register cache. */
if (frame->saved_regs == NULL)