mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
2003-03-12 Andrew Cagney <cagney@redhat.com>
* frame.c (get_current_frame): Check target_has_registers before checking target_has_stack. * eval.c (evaluate_subexp_standard): Use get_selected_frame, instead of deprecated_selected_frame. * findvar.c (value_of_register): Pass "frame", not deprecated_selected_frame, to value_of_builtin_reg.
This commit is contained in:
@@ -566,10 +566,15 @@ unwind_to_current_frame (struct ui_out *ui_out, void *args)
|
||||
struct frame_info *
|
||||
get_current_frame (void)
|
||||
{
|
||||
if (!target_has_stack)
|
||||
error ("No stack.");
|
||||
/* First check, and report, the lack of registers. Having GDB
|
||||
report "No stack!" or "No memory" when the target doesn't even
|
||||
have registers is very confusing. Besides, "printcmd.exp"
|
||||
explicitly checks that ``print $pc'' with no registers prints "No
|
||||
registers". */
|
||||
if (!target_has_registers)
|
||||
error ("No registers.");
|
||||
if (!target_has_stack)
|
||||
error ("No stack.");
|
||||
if (!target_has_memory)
|
||||
error ("No memory.");
|
||||
if (current_frame == NULL)
|
||||
|
||||
Reference in New Issue
Block a user