aboutsummaryrefslogtreecommitdiff
path: root/gdb/stack.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-12-17 17:27:45 +0000
committerAndrew Cagney <cagney@redhat.com>2002-12-17 17:27:45 +0000
commit30f7db39bd8169c551fd7efcf91b682292013db5 (patch)
tree2b2d224d591b6096df844949102ebbdbf6790a13 /gdb/stack.c
parent4cd898632ac64fbba00bab4654e8b124ee7736ca (diff)
downloadfsf-binutils-gdb-30f7db39bd8169c551fd7efcf91b682292013db5.zip
fsf-binutils-gdb-30f7db39bd8169c551fd7efcf91b682292013db5.tar.gz
fsf-binutils-gdb-30f7db39bd8169c551fd7efcf91b682292013db5.tar.bz2
2002-12-17 Andrew Cagney <ac131313@redhat.com>
* stack.c (frame_info): Use get_frame_saved_regs. * breakpoint.c (until_break_command): Use get_frame_pc.
Diffstat (limited to 'gdb/stack.c')
-rw-r--r--gdb/stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stack.c b/gdb/stack.c
index 5f843f2..6ce7366 100644
--- a/gdb/stack.c
+++ b/gdb/stack.c
@@ -900,7 +900,7 @@ frame_info (char *addr_exp, int from_tty)
}
}
- if (fi->saved_regs == NULL)
+ if (get_frame_saved_regs (fi) == NULL)
FRAME_INIT_SAVED_REGS (fi);
/* Print as much information as possible on the location of all the
registers. */