1bbbf1280Sopenharmony_ci/*
2bbbf1280Sopenharmony_ci * AdvSIMD vector PCS variant of __v_pow.
3bbbf1280Sopenharmony_ci *
4bbbf1280Sopenharmony_ci * Copyright (c) 2020, 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_pow, _ZGVnN2vv_pow)
11bbbf1280Sopenharmony_ci#include "v_pow.c"
12bbbf1280Sopenharmony_ci#endif
13