|
From: <sv...@va...> - 2011-07-12 06:33:49
|
Author: sewardj
Date: 2011-07-12 07:29:00 +0100 (Tue, 12 Jul 2011)
New Revision: 11880
Log:
Duh, do r11879 correctly (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:26:04 UTC (rev 11879)
+++ trunk/coregrind/m_initimg/initimg-linux.c 2011-07-12 06:29:00 UTC (rev 11880)
@@ -643,8 +643,8 @@
case AT_GID:
case AT_EGID:
case AT_CLKTCK:
-# if !defined(VPGV_arm_linux_android)
- case AT_FPUCW:
+# if !defined(VGPV_arm_linux_android)
+ case AT_FPUCW: /* missing on android */
# endif
/* All these are pointerless, so we don't need to do
anything about them. */
|