blob: 608f57be0bbd50059679cd67718974298adf8f68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "soft-fp.h"
#include "quad.h"
#include "single.h"
int FQTOS(void *rd, void *rs2)
{
FP_DECL_Q(A); FP_DECL_S(R);
__FP_UNPACK_Q(A, rs2);
FP_CONV(S,Q,1,4,R,A);
__FP_PACK_S(rd, R);
return 1;
}
|