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:
John Baldwin 2017-08-15 08:04:23 -07:00
parent 8975f86409
commit 0335ac6d12
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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