aboutsummaryrefslogtreecommitdiff
path: root/src/math/__math_xflowf.c
blob: 359b46183f483f21f0fb9f76cc4a5943f2c7d12a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "libm.h"

float __math_xflowf(uint32_t sign, float y)
{
	return eval_as_float(fp_barrierf(sign ? -y : y) * y);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif