]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commitdiff
arch_init: Fix AltiVec build on Darwin/ppc
authorAndreas Färber <andreas.faerber@web.de>
Sun, 27 May 2012 14:21:02 +0000 (16:21 +0200)
committerAndreas Färber <afaerber@suse.de>
Tue, 29 May 2012 09:38:07 +0000 (11:38 +0200)
Commit f29a56147b66845914d0a645bf9b4c5bb9a6af57 (implement
-no-user-config command-line option (v3)) introduced uses of bool
in arch_init.c. Shortly before that usage is support code for
AltiVec (conditional to __ALTIVEC__).

GCC's altivec.h may in a !__APPLE_ALTIVEC__ code path redefine bool,
leading to type mismatches. altivec.h recommends to #undef for C++
compatibility, but doing so in C leads to bool remaining undefined.

Fix by redefining bool to _Bool as mandated for stdbool.h by POSIX.

Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
arch_init.c

index 988adcae07cef66b234c99441699fe51b7210c05..a9e8b7442be112afeebc6f32b92d471048a26a84 100644 (file)
@@ -100,6 +100,10 @@ const uint32_t arch_type = QEMU_ARCH;
 #define VECTYPE        vector unsigned char
 #define SPLAT(p)       vec_splat(vec_ld(0, p), 0)
 #define ALL_EQ(v1, v2) vec_all_eq(v1, v2)
+/* altivec.h may redefine the bool macro as vector type.
+ * Reset it to POSIX semantics. */
+#undef bool
+#define bool _Bool
 #elif defined __SSE2__
 #include <emmintrin.h>
 #define VECTYPE        __m128i