Blame bits/libm-simd-decl-stubs.h

Packit 6c4009
/* Empty definitions required for __MATHCALL_VEC unfolding in mathcalls.h.
Packit 6c4009
   Copyright (C) 2014-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#ifndef _MATH_H
Packit 6c4009
# error "Never include <bits/libm-simd-decl-stubs.h> directly;\
Packit 6c4009
 include <math.h> instead."
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
/* Needed definitions could be generated with:
Packit 6c4009
   for func in $(grep __MATHCALL_VEC math/bits/mathcalls.h |\
Packit 6c4009
		 sed -r "s|__MATHCALL_VEC.?\(||; s|,.*||"); do
Packit 6c4009
     echo "#define __DECL_SIMD_${func}";
Packit 6c4009
     echo "#define __DECL_SIMD_${func}f";
Packit 6c4009
     echo "#define __DECL_SIMD_${func}l";
Packit 6c4009
   done
Packit 6c4009
 */
Packit 6c4009
Packit 6c4009
#ifndef _BITS_LIBM_SIMD_DECL_STUBS_H
Packit 6c4009
#define _BITS_LIBM_SIMD_DECL_STUBS_H 1
Packit 6c4009
Packit 6c4009
#define __DECL_SIMD_cos
Packit 6c4009
#define __DECL_SIMD_cosf
Packit 6c4009
#define __DECL_SIMD_cosl
Packit 6c4009
#define __DECL_SIMD_cosf16
Packit 6c4009
#define __DECL_SIMD_cosf32
Packit 6c4009
#define __DECL_SIMD_cosf64
Packit 6c4009
#define __DECL_SIMD_cosf128
Packit 6c4009
#define __DECL_SIMD_cosf32x
Packit 6c4009
#define __DECL_SIMD_cosf64x
Packit 6c4009
#define __DECL_SIMD_cosf128x
Packit 6c4009
Packit 6c4009
#define __DECL_SIMD_sin
Packit 6c4009
#define __DECL_SIMD_sinf
Packit 6c4009
#define __DECL_SIMD_sinl
Packit 6c4009
#define __DECL_SIMD_sinf16
Packit 6c4009
#define __DECL_SIMD_sinf32
Packit 6c4009
#define __DECL_SIMD_sinf64
Packit 6c4009
#define __DECL_SIMD_sinf128
Packit 6c4009
#define __DECL_SIMD_sinf32x
Packit 6c4009
#define __DECL_SIMD_sinf64x
Packit 6c4009
#define __DECL_SIMD_sinf128x
Packit 6c4009
Packit 6c4009
#define __DECL_SIMD_sincos
Packit 6c4009
#define __DECL_SIMD_sincosf
Packit 6c4009
#define __DECL_SIMD_sincosl
Packit 6c4009
#define __DECL_SIMD_sincosf16
Packit 6c4009
#define __DECL_SIMD_sincosf32
Packit 6c4009
#define __DECL_SIMD_sincosf64
Packit 6c4009
#define __DECL_SIMD_sincosf128
Packit 6c4009
#define __DECL_SIMD_sincosf32x
Packit 6c4009
#define __DECL_SIMD_sincosf64x
Packit 6c4009
#define __DECL_SIMD_sincosf128x
Packit 6c4009
Packit 6c4009
#define __DECL_SIMD_log
Packit 6c4009
#define __DECL_SIMD_logf
Packit 6c4009
#define __DECL_SIMD_logl
Packit 6c4009
#define __DECL_SIMD_logf16
Packit 6c4009
#define __DECL_SIMD_logf32
Packit 6c4009
#define __DECL_SIMD_logf64
Packit 6c4009
#define __DECL_SIMD_logf128
Packit 6c4009
#define __DECL_SIMD_logf32x
Packit 6c4009
#define __DECL_SIMD_logf64x
Packit 6c4009
#define __DECL_SIMD_logf128x
Packit 6c4009
Packit 6c4009
#define __DECL_SIMD_exp
Packit 6c4009
#define __DECL_SIMD_expf
Packit 6c4009
#define __DECL_SIMD_expl
Packit 6c4009
#define __DECL_SIMD_expf16
Packit 6c4009
#define __DECL_SIMD_expf32
Packit 6c4009
#define __DECL_SIMD_expf64
Packit 6c4009
#define __DECL_SIMD_expf128
Packit 6c4009
#define __DECL_SIMD_expf32x
Packit 6c4009
#define __DECL_SIMD_expf64x
Packit 6c4009
#define __DECL_SIMD_expf128x
Packit 6c4009
Packit 6c4009
#define __DECL_SIMD_pow
Packit 6c4009
#define __DECL_SIMD_powf
Packit 6c4009
#define __DECL_SIMD_powl
Packit 6c4009
#define __DECL_SIMD_powf16
Packit 6c4009
#define __DECL_SIMD_powf32
Packit 6c4009
#define __DECL_SIMD_powf64
Packit 6c4009
#define __DECL_SIMD_powf128
Packit 6c4009
#define __DECL_SIMD_powf32x
Packit 6c4009
#define __DECL_SIMD_powf64x
Packit 6c4009
#define __DECL_SIMD_powf128x
Packit 6c4009
#endif