Module Name:    src
Committed By:   matt
Date:           Tue Aug 20 21:08:54 UTC 2013

Modified Files:
        src/common/lib/libc/arch/arm/string: strlcat.S

Log Message:
strlcat_arm.S is smaller than strlcat_naive.S so always use it.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/common/lib/libc/arch/arm/string/strlcat.S

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

Modified files:

Index: src/common/lib/libc/arch/arm/string/strlcat.S
diff -u src/common/lib/libc/arch/arm/string/strlcat.S:1.1 src/common/lib/libc/arch/arm/string/strlcat.S:1.2
--- src/common/lib/libc/arch/arm/string/strlcat.S:1.1	Wed Jan 23 07:56:09 2013
+++ src/common/lib/libc/arch/arm/string/strlcat.S	Tue Aug 20 21:08:54 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: strlcat.S,v 1.1 2013/01/23 07:56:09 matt Exp $ */
+/* $NetBSD: strlcat.S,v 1.2 2013/08/20 21:08:54 matt Exp $ */
 
 #include <machine/asm.h>
 
@@ -7,7 +7,7 @@ WEAK_ALIAS(strlcat, _strlcat)
 #include "namespace.h"
 #endif
 
-#ifdef _STANDALONE
+#if defined(_STANDALONE) && 0	/* arm version is always smaller */
 #include "strlcat_naive.S"
 #else
 #include "strlcat_arm.S"

Reply via email to