Switch to using ARM assembly versions of strcat, strchr, strrchr.

This commit is contained in:
matt 2013-01-23 05:46:17 +00:00
parent 2b36c3f081
commit 24a929b8a1
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,7 @@
/* $NetBSD: strcat.S,v 1.1 2013/01/23 05:46:17 matt Exp $ */
#if defined(_STANDALONE)
#include "strcat_naive.S"
#else
#include "strcat_arm.S"
#endif

View File

@ -0,0 +1,7 @@
/* $NetBSD: strchr.S,v 1.1 2013/01/23 05:46:17 matt Exp $ */
#if defined(_STANDALONE)
#include "strchr_naive.S"
#else
#include "strchr_arm.S"
#endif

View File

@ -0,0 +1,7 @@
/* $NetBSD: strrchr.S,v 1.1 2013/01/23 05:46:17 matt Exp $ */
#if defined(_STANDALONE)
#include "strrchr_naive.S"
#else
#include "strrchr_arm.S"
#endif