* ax-gdb.c (gen_expr): Yield ordinary error if asked to trace a
pseudoregister, not an internal error.
This commit is contained in:
parent
2399638e51
commit
02e4669d27
@ -1,3 +1,8 @@
|
||||
2008-02-05 Jim Blandy <jimb@red-bean.com>
|
||||
|
||||
* ax-gdb.c (gen_expr): Yield ordinary error if asked to trace a
|
||||
pseudoregister, not an internal error.
|
||||
|
||||
2008-02-04 Vladimir Prus <vladimir@codesourcery.com>
|
||||
|
||||
* varobj.c (c_value_of_variable): Use xstrdup.
|
||||
|
@ -1607,6 +1607,10 @@ gen_expr (union exp_element **pc, struct agent_expr *ax,
|
||||
if (reg == -1)
|
||||
internal_error (__FILE__, __LINE__,
|
||||
_("Register $%s not available"), name);
|
||||
if (reg >= gdbarch_num_regs (current_gdbarch))
|
||||
error (_("'%s' is a pseudo-register; "
|
||||
"GDB cannot yet trace pseudoregister contents."),
|
||||
name);
|
||||
value->kind = axs_lvalue_register;
|
||||
value->u.reg = reg;
|
||||
value->type = register_type (current_gdbarch, reg);
|
||||
|
Loading…
Reference in New Issue
Block a user