Blame sysdeps/s390/ifunc-strpbrk.h

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