aboutsummaryrefslogtreecommitdiff
path: root/gdb/std-regs.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/std-regs.c')
-rw-r--r--gdb/std-regs.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/gdb/std-regs.c b/gdb/std-regs.c
index 647dd0d..486b919 100644
--- a/gdb/std-regs.c
+++ b/gdb/std-regs.c
@@ -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;
}
}