mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 12:23:31 +08:00
Revert "Fix build breakage"
This reverts commit 222cab58b7ed37df6e01dacb0932f400a2588137.
This commit is contained in:
@ -1,7 +1,3 @@
|
|||||||
2016-02-09 Walfred Tedeschi <walfred.tedeschi@intel.com>
|
|
||||||
|
|
||||||
* linux-x86-low.c (x86_siginfo_fixup): Add cast to gdb_byte*.
|
|
||||||
|
|
||||||
2016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
|
2016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
|
||||||
|
|
||||||
* configure.srv (x86_64-*-linux*): Add amd64-linux-siginfo.o
|
* configure.srv (x86_64-*-linux*): Add amd64-linux-siginfo.o
|
||||||
|
@ -690,12 +690,12 @@ x86_siginfo_fixup (siginfo_t *native, void *inf, int direction)
|
|||||||
|
|
||||||
/* Is the inferior 32-bit? If so, then fixup the siginfo object. */
|
/* Is the inferior 32-bit? If so, then fixup the siginfo object. */
|
||||||
if (!is_64bit_tdesc ())
|
if (!is_64bit_tdesc ())
|
||||||
return amd64_linux_siginfo_fixup_common (native, (gdb_byte *) inf,
|
return amd64_linux_siginfo_fixup_common (native, inf, direction,
|
||||||
direction, FIXUP_32);
|
FIXUP_32);
|
||||||
/* No fixup for native x32 GDB. */
|
/* No fixup for native x32 GDB. */
|
||||||
else if (!is_elf64 && sizeof (void *) == 8)
|
else if (!is_elf64 && sizeof (void *) == 8)
|
||||||
return amd64_linux_siginfo_fixup_common (native, (gdb_byte *) inf,
|
return amd64_linux_siginfo_fixup_common (native, inf, direction,
|
||||||
direction, FIXUP_X32);
|
FIXUP_X32);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Reference in New Issue
Block a user