* std-regs.c (value_of_builtin_frame_pc_reg): Frame can't be null.
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
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;
}
}