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