svn commit: r263243 - head/lib/libc/arm/aeabi
Andrew Turner
andrew at FreeBSD.org
Sun Mar 16 14:21:10 UTC 2014
Author: andrew
Date: Sun Mar 16 14:21:09 2014
New Revision: 263243
URL: http://svnweb.freebsd.org/changeset/base/263243
Log:
Remove an extra 1 in an #if line
Reported by: ian@
Modified:
head/lib/libc/arm/aeabi/aeabi_vfp.h
Modified: head/lib/libc/arm/aeabi/aeabi_vfp.h
==============================================================================
--- head/lib/libc/arm/aeabi/aeabi_vfp.h Sun Mar 16 14:19:46 2014 (r263242)
+++ head/lib/libc/arm/aeabi/aeabi_vfp.h Sun Mar 16 14:21:09 2014 (r263243)
@@ -65,7 +65,7 @@
* C Helper macros
*/
-#if 1 && defined(__FreeBSD_ARCH_armv6__) || (defined(__ARM_ARCH) && __ARM_ARCH >= 6)
+#if defined(__FreeBSD_ARCH_armv6__) || (defined(__ARM_ARCH) && __ARM_ARCH >= 6)
/*
* Generate a function that will either call into the VFP implementation,
* or the soft float version for a given __aeabi_* helper. The function
More information about the svn-src-all
mailing list