From 0e100dab2eb07e9fc9ca155f87172d02439b64cb Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Sat, 1 May 2004 19:35:22 +0000 Subject: 2004-05-01 Andrew Cagney * frame.c (create_sentinel_frame): Set type to SENTINEL_FRAME. * dummy-frame.c (dummy_frame_this_id): Use get_frame_type, instead of frame_relative_level. * sentinel-frame.c (sentinel_frame_unwinder): Set unwinder's type to SENTINEL_FRAME. * frame.h (enum frame_type): Add SENTINEL_FRAME. * s390-tdep.c (s390_prologue_frame_unwind_cache): Delete calls to frame_relative_level. --- gdb/frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/frame.c') diff --git a/gdb/frame.c b/gdb/frame.c index f120a16..5359fd3 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -767,7 +767,7 @@ static struct frame_info * create_sentinel_frame (struct regcache *regcache) { struct frame_info *frame = FRAME_OBSTACK_ZALLOC (struct frame_info); - frame->type = NORMAL_FRAME; + frame->type = SENTINEL_FRAME; frame->level = -1; /* Explicitly initialize the sentinel frame's cache. Provide it with the underlying regcache. In the future additional -- cgit v1.1