For Thumb, use naive version
This commit is contained in:
parent
f37c7d04a2
commit
c2438985ca
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue