Fix compile on big-endian platforms in siginfo_t converter.
gdb/ChangeLog: * fbsd-nat.c (fbsd_convert_siginfo): Fix compile on big-endian platforms.
This commit is contained in:
parent
8975f86409
commit
0335ac6d12
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2017-08-15 John Baldwin <jhb@FreeBSD.org>
|
||||
|
||||
* fbsd-nat.c (fbsd_convert_siginfo): Fix compile on big-endian
|
||||
platforms.
|
||||
|
||||
2017-08-14 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* valprint.c (print_octal_chars): Use HOST_CHAR_BIT.
|
||||
|
|
|
@ -314,7 +314,7 @@ fbsd_convert_siginfo (siginfo_t *si)
|
|||
32-bits of the pointer value. */
|
||||
#if _BYTE_ORDER == _BIG_ENDIAN
|
||||
if (si->si_value.sival_int == 0)
|
||||
si32->si_value.sival_ptr = (uintptr_t) si->si_value.sival_ptr;
|
||||
si32.si_value.sival_ptr = (uintptr_t) si->si_value.sival_ptr;
|
||||
else
|
||||
si32.si_value.sival_int = si->si_value.sival_int;
|
||||
#else
|
||||
|
|
Loading…
Add table
Reference in a new issue