Blame sysdeps/s390/ifunc-wcspbrk.h

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