Module Name:    src
Committed By:   matt
Date:           Sun Aug 17 16:14:59 UTC 2014

Modified Files:
        src/lib/libc/compiler_rt: Makefile.inc

Log Message:
VAX does need __clzsi2


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/lib/libc/compiler_rt/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/compiler_rt/Makefile.inc
diff -u src/lib/libc/compiler_rt/Makefile.inc:1.25 src/lib/libc/compiler_rt/Makefile.inc:1.26
--- src/lib/libc/compiler_rt/Makefile.inc:1.25	Wed Aug 13 14:41:45 2014
+++ src/lib/libc/compiler_rt/Makefile.inc	Sun Aug 17 16:14:59 2014
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.25 2014/08/13 14:41:45 joerg Exp $
+# $NetBSD: Makefile.inc,v 1.26 2014/08/17 16:14:59 matt Exp $
 
 COMPILER_RT_SRCDIR=	${NETBSDSRCDIR}/sys/external/bsd/compiler_rt/dist
 
@@ -136,9 +136,15 @@ GENERIC_SRCS+= \
 
 # These have h/w instructions which are always used.
 .if ${LIBC_MACHINE_ARCH} != "alpha" && ${LIBC_MACHINE_CPU} != "powerpc" \
+    && ${LIBC_MACHINE_CPU} != "aarch64"
+GENERIC_SRCS+= \
+	clzsi2.c
+.endif
+
+# These have h/w instructions which are always used.
+.if ${LIBC_MACHINE_ARCH} != "alpha" && ${LIBC_MACHINE_CPU} != "powerpc" \
     && ${LIBC_MACHINE_CPU} != "aarch64" && ${LIBC_MACHINE_ARCH} != "vax"
 GENERIC_SRCS+= \
-	clzsi2.c \
 	ctzsi2.c \
 	divmodsi4.c \
 	divsi3.c \

Reply via email to