gdb/
* i386-tdep.c (i386_in_stack_tramp_p): Remove unused parameter 'gdbarch'. (i386_stack_tramp_frame_sniffer): Caller update. * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove parameter 'gdbarch' and 'target'. (i386_linux_core_read_description): Caller update. * amd64-linux-tdep.c (amd64_linux_core_read_description): Likewise. * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update declaration.
This commit is contained in:
parent
365156ada1
commit
6df81a635e
5 changed files with 19 additions and 9 deletions
|
@ -599,8 +599,7 @@ static int i386_linux_sc_reg_offset[] =
|
|||
/* Get XSAVE extended state xcr0 from core dump. */
|
||||
|
||||
uint64_t
|
||||
i386_linux_core_read_xcr0 (struct gdbarch *gdbarch,
|
||||
struct target_ops *target, bfd *abfd)
|
||||
i386_linux_core_read_xcr0 (bfd *abfd)
|
||||
{
|
||||
asection *xstate = bfd_get_section_by_name (abfd, ".reg-xstate");
|
||||
uint64_t xcr0;
|
||||
|
@ -642,7 +641,7 @@ i386_linux_core_read_description (struct gdbarch *gdbarch,
|
|||
bfd *abfd)
|
||||
{
|
||||
/* Linux/i386. */
|
||||
uint64_t xcr0 = i386_linux_core_read_xcr0 (gdbarch, target, abfd);
|
||||
uint64_t xcr0 = i386_linux_core_read_xcr0 (abfd);
|
||||
switch ((xcr0 & I386_XSTATE_AVX_MASK))
|
||||
{
|
||||
case I386_XSTATE_AVX_MASK:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue