1bbbf1280Sopenharmony_ci/*
2bbbf1280Sopenharmony_ci * AdvSIMD vector PCS variant of __v_exp2f.
3bbbf1280Sopenharmony_ci *
4bbbf1280Sopenharmony_ci * Copyright (c) 2019, Arm Limited.
5bbbf1280Sopenharmony_ci * SPDX-License-Identifier: MIT
6bbbf1280Sopenharmony_ci */
7bbbf1280Sopenharmony_ci#include "mathlib.h"
8bbbf1280Sopenharmony_ci#ifdef __vpcs
9bbbf1280Sopenharmony_ci#define VPCS 1
10bbbf1280Sopenharmony_ci#define VPCS_ALIAS strong_alias (__vn_exp2f, _ZGVnN4v_exp2f)
11bbbf1280Sopenharmony_ci#include "v_exp2f.c"
12bbbf1280Sopenharmony_ci#endif
13