1*0928368fSKristof Beyls /* 2*0928368fSKristof Beyls * AdvSIMD vector PCS variant of __v_sinf. 3*0928368fSKristof Beyls * 4*0928368fSKristof Beyls * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5*0928368fSKristof Beyls * See https://llvm.org/LICENSE.txt for license information. 6*0928368fSKristof Beyls * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7*0928368fSKristof Beyls */ 8*0928368fSKristof Beyls #include "mathlib.h" 9*0928368fSKristof Beyls #ifdef __vpcs 10*0928368fSKristof Beyls #define VPCS 1 11*0928368fSKristof Beyls #define VPCS_ALIAS strong_alias (__vn_sinf, _ZGVnN4v_sinf) 12*0928368fSKristof Beyls #include "v_sinf.c" 13*0928368fSKristof Beyls #endif 14