Blame sysdeps/s390/ifunc-wcsncat.h

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