Blame sysdeps/s390/ifunc-strchr.h

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