|
From: <sv...@va...> - 2011-07-12 06:30:56
|
Author: sewardj
Date: 2011-07-12 07:26:04 +0100 (Tue, 12 Jul 2011)
New Revision: 11879
Log:
Android doesn't have an auxv entry called AT_FPUCW.
Modified:
trunk/coregrind/m_initimg/initimg-linux.c
Modified: trunk/coregrind/m_initimg/initimg-linux.c
===================================================================
--- trunk/coregrind/m_initimg/initimg-linux.c 2011-07-12 06:24:23 UTC (rev 11878)
+++ trunk/coregrind/m_initimg/initimg-linux.c 2011-07-12 06:26:04 UTC (rev 11879)
@@ -643,7 +643,9 @@
case AT_GID:
case AT_EGID:
case AT_CLKTCK:
+# if !defined(VPGV_arm_linux_android)
case AT_FPUCW:
+# endif
/* All these are pointerless, so we don't need to do
anything about them. */
break;
|