Blame sysdeps/powerpc/powerpc64/multiarch/strcpy-power9.S

Packit Service e3706f
/* Optimized strcpy implementation for POWER9/PPC64.
Packit Service e3706f
   Copyright (C) 2016-2020 Free Software Foundation, Inc.
Packit Service e3706f
   This file is part of the GNU C Library.
Packit Service e3706f
Packit Service e3706f
   The GNU C Library is free software; you can redistribute it and/or
Packit Service e3706f
   modify it under the terms of the GNU Lesser General Public
Packit Service e3706f
   License as published by the Free Software Foundation; either
Packit Service e3706f
   version 2.1 of the License, or (at your option) any later version.
Packit Service e3706f
Packit Service e3706f
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service e3706f
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service e3706f
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service e3706f
   Lesser General Public License for more details.
Packit Service e3706f
Packit Service e3706f
   You should have received a copy of the GNU Lesser General Public
Packit Service e3706f
   License along with the GNU C Library; if not, see
Packit Service e3706f
   <https://www.gnu.org/licenses/>.  */
Packit Service e3706f
Packit Service e3706f
#if defined __LITTLE_ENDIAN__ && IS_IN (libc)
Packit Service e3706f
#define STRCPY __strcpy_power9
Packit Service e3706f
Packit Service e3706f
#undef libc_hidden_builtin_def
Packit Service e3706f
#define libc_hidden_builtin_def(name)
Packit Service e3706f
Packit Service e3706f
#include <sysdeps/powerpc/powerpc64/le/power9/strcpy.S>
Packit Service e3706f
#endif