From 6e26587d1734d8071b6132fa9a4a6dc5110e4279 Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Fri, 25 Mar 2016 16:35:46 -0400 Subject: bits/byteswap-common.h: import recent headers from glibc On systems where uClibc doesn't provide an arch specific byteswap.h, we fall back on bits/byteswap-common.h. However, there is a bug in this header in the __bswap_constant_64(x) macro. If, for example, a double is passed, we get 'invalid operands to binary &' in which we mismatch a 'double' and 'long long unsigned int'. The newer glibc headers fix this and so we import them. Also, since the inclusion of byteswap.h is not appropriate for assembly code, we guard a portion of endian.h which uses byteswap.h from inclusion in any assembly. This is needed, for example, for f2fs-tools 1.6.0 on 32-bit big endian PowerPC. Signed-off-by: Anthony G. Basile --- include/endian.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/endian.h b/include/endian.h index 23a265485..eb2039e68 100644 --- a/include/endian.h +++ b/include/endian.h @@ -66,7 +66,7 @@ # endif #endif -#ifdef __USE_BSD +#if defined(__USE_BSD) && !defined(__ASSEMBLER__) /* Conversion interfaces. */ # include -- cgit v1.2.3