aboutsummaryrefslogtreecommitdiff
path: root/lib/msun
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2023-02-14 16:48:51 +0000
committerWarner Losh <imp@FreeBSD.org>2023-02-14 16:53:08 +0000
commitae902a5be9b814332269a70350f4e27cb4eb1d94 (patch)
tree4af50c1aa5f8723f1941a726fe9888a6032c830c /lib/msun
parent5c33688475a5bb97d644079d5320068991c26b76 (diff)
downloadsrc-ae902a5be9b814332269a70350f4e27cb4eb1d94.tar.gz
src-ae902a5be9b814332269a70350f4e27cb4eb1d94.zip
libc: Simplify soft-float on 32-bit arm
Simplify the tests for 32-bit arm soft float support. For the files included only on arm, drop the test entirely. For others, test MACHINE_CPUARCH against arm. No functional change intended. File lists appear the same before / after the change. Sponsored by: Netflix Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D38582
Diffstat (limited to 'lib/msun')
-rw-r--r--lib/msun/arm/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/arm/Makefile.inc b/lib/msun/arm/Makefile.inc
index 6ebf21a9c3c5..05f3548f946a 100644
--- a/lib/msun/arm/Makefile.inc
+++ b/lib/msun/arm/Makefile.inc
@@ -3,7 +3,7 @@
LDBL_PREC = 53
SYM_MAPS += ${.CURDIR}/arm/Symbol.map
-.if ${MACHINE_ARCH:Marmv[67]*} && defined(CPUTYPE) && ${CPUTYPE:M*soft*} != ""
+.if defined(CPUTYPE) && ${CPUTYPE:M*soft*} != ""
ARCH_SRCS = fenv-softfp.c fenv-vfp.c
.endif