|
From: <sv...@va...> - 2005-10-07 12:11:19
|
Author: sewardj
Date: 2005-10-07 13:11:12 +0100 (Fri, 07 Oct 2005)
New Revision: 4889
Log:
Disable ppc32 altivec pro tem (just temporarily).
Modified:
trunk/coregrind/m_main.c
Modified: trunk/coregrind/m_main.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/m_main.c 2005-10-07 11:08:55 UTC (rev 4888)
+++ trunk/coregrind/m_main.c 2005-10-07 12:11:12 UTC (rev 4889)
@@ -549,8 +549,12 @@
/* Acquire altivecness info */
VG_(debugLog)(2, "main", "PPC32 hwcaps: 0x%x\n",=20
(UInt)auxv->u.a_val);
+#if 0
if (auxv->u.a_val & 0x10000000)
VG_(have_altivec_ppc32) =3D 1;
+#else
+ auxv->u.a_val &=3D ~0x10000000;
+#endif
VG_(debugLog)(2, "main", "PPC32 AltiVec support: %u\n",=20
VG_(have_altivec_ppc32));
# endif
|