blob: ae9f382ed6928ebc55e8f3403796410061a8e678 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "soft-fp.h"
#include "double.h"
#include "single.h"
int FDTOS(void *rd, void *rs2)
{
FP_DECL_D(A); FP_DECL_S(R);
__FP_UNPACK_D(A, rs2);
FP_CONV(S,D,1,1,R,A);
return __FP_PACK_S(rd, R);
}
|