mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-24 12:35:55 +08:00
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:
parent
d014929c51
commit
18ea20acd4
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user