2011-03-01 Michael Snyder <msnyder@vmware.com>

* std-regs.c (value_of_builtin_frame_pc_reg): Frame can't be null.
This commit is contained in:
Michael Snyder 2011-03-01 21:46:42 +00:00
parent d014929c51
commit 18ea20acd4
2 changed files with 4 additions and 5 deletions

View File

@ -1,5 +1,7 @@
2011-03-01 Michael Snyder <msnyder@vmware.com>
* std-regs.c (value_of_builtin_frame_pc_reg): Frame can't be null.
* event-top.c (display_gdb_prompt): Remove superfluous null check.
* python/py-prettyprint.c (apply_val_pretty_printer): VAL may

View File

@ -70,11 +70,8 @@ value_of_builtin_frame_pc_reg (struct frame_info *frame, const void *baton)
struct value *val = allocate_value (func_ptr_type);
gdb_byte *buf = value_contents_raw (val);
if (frame == NULL)
memset (buf, 0, TYPE_LENGTH (value_type (val)));
else
gdbarch_address_to_pointer (gdbarch, func_ptr_type,
buf, get_frame_pc (frame));
gdbarch_address_to_pointer (gdbarch, func_ptr_type,
buf, get_frame_pc (frame));
return val;
}
}