diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2005-05-16 12:38:09 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2005-05-16 12:38:09 +0000 |
commit | 43af2100406a585392e1866b511eaf5f058798b6 (patch) | |
tree | c19f4e1a118ca46e49d0b709be8ea7ee6913e982 /gdb/s390-tdep.c | |
parent | 2e82d168cfc1dd29712a0084d2f9e9064fc5fc00 (diff) | |
download | gdb-43af2100406a585392e1866b511eaf5f058798b6.zip gdb-43af2100406a585392e1866b511eaf5f058798b6.tar.gz gdb-43af2100406a585392e1866b511eaf5f058798b6.tar.bz2 |
* s390-tdep.c (s390_return_value): Remove unnecessary casts.
(s390_breakpoint_from_pc): Change type of return value and
'breakpoint' to const gdb_byte *.
Diffstat (limited to 'gdb/s390-tdep.c')
-rw-r--r-- | gdb/s390-tdep.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gdb/s390-tdep.c b/gdb/s390-tdep.c index cbb5b8c..18f7ea4 100644 --- a/gdb/s390-tdep.c +++ b/gdb/s390-tdep.c @@ -2726,8 +2726,7 @@ s390_return_value (struct gdbarch *gdbarch, struct type *type, else if (length == 2*word_size) { regcache_cooked_write (regcache, S390_R2_REGNUM, in); - regcache_cooked_write (regcache, S390_R3_REGNUM, - (const char *)in + word_size); + regcache_cooked_write (regcache, S390_R3_REGNUM, in + word_size); } else internal_error (__FILE__, __LINE__, _("invalid return type")); @@ -2759,8 +2758,7 @@ s390_return_value (struct gdbarch *gdbarch, struct type *type, else if (length == 2*word_size) { regcache_cooked_read (regcache, S390_R2_REGNUM, out); - regcache_cooked_read (regcache, S390_R3_REGNUM, - (char *)out + word_size); + regcache_cooked_read (regcache, S390_R3_REGNUM, out + word_size); } else internal_error (__FILE__, __LINE__, _("invalid return type")); @@ -2778,10 +2776,10 @@ s390_return_value (struct gdbarch *gdbarch, struct type *type, /* Breakpoints. */ -static const unsigned char * +static const gdb_byte * s390_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenptr) { - static unsigned char breakpoint[] = { 0x0, 0x1 }; + static const gdb_byte breakpoint[] = { 0x0, 0x1 }; *lenptr = sizeof (breakpoint); return breakpoint; |