blob: d57cdc98e756bb6d7296686c4561682236755e7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "soft-fp.h"
#include "single.h"
int FSQRTS(void *rd, void *rs2)
{
FP_DECL_S(A); FP_DECL_S(R);
__FP_UNPACK_S(A, rs2);
FP_SQRT_S(R, A);
__FP_PACK_S(rd, R);
return 1;
}
|