mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE) (VALUE_BITPOS): Delete. (value_type, value_offset, value_bitsize, value_bitpos): Declare. * value.c (value_type, value_offset, value_bitpos) (value_bitsize): New functions. Update references. * arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update. * f-valprint.c, cp-valprint.c, c-valprint.c: Update. * ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update. * p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update. * objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update. * infcall.c, linespec.c, printcmd.c, valarith.c: Update. * valops.c, eval.c, findvar.c, breakpoint.c: Update. * tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c: * rs6000-tdep.c, ppc-sysv-tdep.c: Update.
This commit is contained in:
@ -722,10 +722,10 @@ value_from_register (struct type *type, int regnum, struct frame_info *frame)
|
||||
if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG
|
||||
&& len < register_size (current_gdbarch, regnum))
|
||||
/* Big-endian, and we want less than full size. */
|
||||
VALUE_OFFSET (v) = register_size (current_gdbarch, regnum) - len;
|
||||
v->offset = register_size (current_gdbarch, regnum) - len;
|
||||
else
|
||||
VALUE_OFFSET (v) = 0;
|
||||
memcpy (VALUE_CONTENTS_RAW (v), value_bytes + VALUE_OFFSET (v), len);
|
||||
v->offset = 0;
|
||||
memcpy (VALUE_CONTENTS_RAW (v), value_bytes + value_offset (v), len);
|
||||
}
|
||||
return v;
|
||||
}
|
||||
|
Reference in New Issue
Block a user