Blame sysdeps/s390/ifunc-strspn.h

Packit Service 6ccf2d
/* strspn variant information on S/390 version.
Packit Service 6ccf2d
   Copyright (C) 2018 Free Software Foundation, Inc.
Packit Service 6ccf2d
   This file is part of the GNU C Library.
Packit Service 6ccf2d
Packit Service 6ccf2d
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 6ccf2d
   modify it under the terms of the GNU Lesser General Public
Packit Service 6ccf2d
   License as published by the Free Software Foundation; either
Packit Service 6ccf2d
   version 2.1 of the License, or (at your option) any later version.
Packit Service 6ccf2d
Packit Service 6ccf2d
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 6ccf2d
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 6ccf2d
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 6ccf2d
   Lesser General Public License for more details.
Packit Service 6ccf2d
Packit Service 6ccf2d
   You should have received a copy of the GNU Lesser General Public
Packit Service 6ccf2d
   License along with the GNU C Library; if not, see
Packit Service 6ccf2d
   <http://www.gnu.org/licenses/>.  */
Packit Service 6ccf2d
Packit Service 6ccf2d
#if defined USE_MULTIARCH && IS_IN (libc)		\
Packit Service 6ccf2d
  && ! defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
Packit Service 6ccf2d
# define HAVE_STRSPN_IFUNC	1
Packit Service 6ccf2d
#else
Packit Service 6ccf2d
# define HAVE_STRSPN_IFUNC	0
Packit Service 6ccf2d
#endif
Packit Service 6ccf2d
Packit Service 6ccf2d
#ifdef HAVE_S390_VX_ASM_SUPPORT
Packit Service 6ccf2d
# define HAVE_STRSPN_IFUNC_AND_VX_SUPPORT HAVE_STRSPN_IFUNC
Packit Service 6ccf2d
#else
Packit Service 6ccf2d
# define HAVE_STRSPN_IFUNC_AND_VX_SUPPORT 0
Packit Service 6ccf2d
#endif
Packit Service 6ccf2d
Packit Service 6ccf2d
#if defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
Packit Service 6ccf2d
# define STRSPN_DEFAULT		STRSPN_Z13
Packit Service 6ccf2d
# define HAVE_STRSPN_C		0
Packit Service 6ccf2d
# define HAVE_STRSPN_Z13	1
Packit Service 6ccf2d
#else
Packit Service 6ccf2d
# define STRSPN_DEFAULT		STRSPN_C
Packit Service 6ccf2d
# define HAVE_STRSPN_C		1
Packit Service 6ccf2d
# define HAVE_STRSPN_Z13	HAVE_STRSPN_IFUNC_AND_VX_SUPPORT
Packit Service 6ccf2d
#endif
Packit Service 6ccf2d
Packit Service 6ccf2d
#if HAVE_STRSPN_C
Packit Service 6ccf2d
# define STRSPN_C		__strspn_c
Packit Service 6ccf2d
#else
Packit Service 6ccf2d
# define STRSPN_C		NULL
Packit Service 6ccf2d
#endif
Packit Service 6ccf2d
Packit Service 6ccf2d
#if HAVE_STRSPN_Z13
Packit Service 6ccf2d
# define STRSPN_Z13		__strspn_vx
Packit Service 6ccf2d
#else
Packit Service 6ccf2d
# define STRSPN_Z13		NULL
Packit Service 6ccf2d
#endif