Blame sysdeps/s390/ifunc-wcschrnul.h

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