mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-28 10:00:51 +00:00
* i386-linux-nat.c (supply_gregset): Remove unnecessary casts.
This commit is contained in:
@@ -72,7 +72,6 @@
|
||||
|
||||
/* Prototypes for local functions. */
|
||||
static void dummy_sse_values (void);
|
||||
|
||||
|
||||
|
||||
/* The register sets used in GNU/Linux ELF core-dumps are identical to
|
||||
@@ -233,10 +232,10 @@ supply_gregset (elf_gregset_t *gregsetp)
|
||||
int i;
|
||||
|
||||
for (i = 0; i < I386_NUM_GREGS; i++)
|
||||
supply_register (i, (char *) (regp + regmap[i]));
|
||||
supply_register (i, regp + regmap[i]);
|
||||
|
||||
if (I386_LINUX_ORIG_EAX_REGNUM < NUM_REGS)
|
||||
supply_register (I386_LINUX_ORIG_EAX_REGNUM, (char *) (regp + ORIG_EAX));
|
||||
supply_register (I386_LINUX_ORIG_EAX_REGNUM, regp + ORIG_EAX);
|
||||
}
|
||||
|
||||
/* Fill register REGNO (if it is a general-purpose register) in
|
||||
|
||||
Reference in New Issue
Block a user