1/* 2 * Selected possible strlen implementations. 3 * 4 * Copyright (c) 2019, Arm Limited. 5 * SPDX-License-Identifier: MIT 6 */ 7 8#if __aarch64__ 9#include "aarch64/strlen.S" 10# if __ARM_FEATURE_SVE 11#include "aarch64/strlen-sve.S" 12# endif 13#elif __arm__ 14# if __ARM_ARCH >= 6 && __ARM_ARCH_ISA_THUMB == 2 15#include "arm/strlen-armv6t2.S" 16# endif 17#endif 18