|
From: <sv...@va...> - 2010-01-02 10:38:07
|
Author: sewardj
Date: 2010-01-02 10:37:58 +0000 (Sat, 02 Jan 2010)
New Revision: 10989
Log:
Tidy up determination of the PLAT_ macros a bit.
Modified:
trunk/include/valgrind.h
Modified: trunk/include/valgrind.h
===================================================================
--- trunk/include/valgrind.h 2010-01-01 20:56:13 UTC (rev 10988)
+++ trunk/include/valgrind.h 2010-01-02 10:37:58 UTC (rev 10989)
@@ -89,13 +89,15 @@
Misc note: how to find out what's predefined in gcc by default:
gcc -Wp,-dM somefile.c
*/
+#undef PLAT_ppc64_aix5
+#undef PLAT_ppc32_aix5
+#undef PLAT_x86_darwin
+#undef PLAT_amd64_darwin
#undef PLAT_x86_linux
#undef PLAT_amd64_linux
#undef PLAT_ppc32_linux
#undef PLAT_ppc64_linux
#undef PLAT_arm_linux
-#undef PLAT_ppc32_aix5
-#undef PLAT_ppc64_aix5
#if defined(_AIX) && defined(__64BIT__)
# define PLAT_ppc64_aix5 1
|