From: Julian Seward Date: Fri, 7 Oct 2005 12:11:12 +0000 (+0000) Subject: Disable ppc32 altivec pro tem (just temporarily). X-Git-Tag: svn/VALGRIND_3_1_0~343 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8559d79377d6fabae0ffb36219c6d7459b18aa47;p=thirdparty%2Fvalgrind.git Disable ppc32 altivec pro tem (just temporarily). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4889 --- diff --git a/coregrind/m_main.c b/coregrind/m_main.c index e71b27a6a4..26e8701ffd 100644 --- a/coregrind/m_main.c +++ b/coregrind/m_main.c @@ -549,8 +549,12 @@ Addr setup_client_stack( void* init_sp, /* Acquire altivecness info */ VG_(debugLog)(2, "main", "PPC32 hwcaps: 0x%x\n", (UInt)auxv->u.a_val); +#if 0 if (auxv->u.a_val & 0x10000000) VG_(have_altivec_ppc32) = 1; +#else + auxv->u.a_val &= ~0x10000000; +#endif VG_(debugLog)(2, "main", "PPC32 AltiVec support: %u\n", VG_(have_altivec_ppc32)); # endif