For Thumb, use naive version

This commit is contained in:
matt 2013-08-19 01:08:29 +00:00
parent f37c7d04a2
commit c2438985ca
4 changed files with 8 additions and 8 deletions

View File

@ -1,10 +1,10 @@
/* $NetBSD: strchr.S,v 1.2 2013/01/23 07:45:46 matt Exp $ */
/* $NetBSD: strchr.S,v 1.3 2013/08/19 01:08:29 matt Exp $ */
#include <machine/asm.h>
STRONG_ALIAS(index, strchr)
#if defined(_STANDALONE)
#if defined(_STANDALONE) || defined(__thumb__)
#include "strchr_naive.S"
#else
#include "strchr_arm.S"

View File

@ -1,6 +1,6 @@
/* $NetBSD: strlen.S,v 1.2 2013/01/08 13:21:05 matt Exp $ */
/* $NetBSD: strlen.S,v 1.3 2013/08/19 01:08:29 matt Exp $ */
#ifdef _STANDALONE
#if defined(_STANDALONE) || defined(__thumb__)
#include "strlen_naive.S"
#else
#include "strlen_arm.S"

View File

@ -1,8 +1,8 @@
/* $NetBSD: strnlen.S,v 1.1 2013/01/23 07:56:09 matt Exp $ */
/* $NetBSD: strnlen.S,v 1.2 2013/08/19 01:08:29 matt Exp $ */
#define STRNLEN
#ifdef _STANDALONE
#if defined(_STANDALONE) || defined(__thumb__)
#include "strlen_naive.S"
#else
#include "strlen_arm.S"

View File

@ -1,10 +1,10 @@
/* $NetBSD: strrchr.S,v 1.2 2013/01/23 07:45:46 matt Exp $ */
/* $NetBSD: strrchr.S,v 1.3 2013/08/19 01:08:29 matt Exp $ */
#include <machine/asm.h>
STRONG_ALIAS(rindex, strrchr)
#if defined(_STANDALONE)
#if defined(_STANDALONE) || defined(__thumb__)
#include "strrchr_naive.S"
#else
#include "strrchr_arm.S"