avoid bogus warning
[pcsx_rearmed.git] / libpcsxcore / new_dynarec / fpu.h
CommitLineData
57871462 1void cvt_s_w(int *source,float *dest);
2void cvt_d_w(int *source,double *dest);
3void cvt_s_l(long long *source,float *dest);
4void cvt_d_l(long long *source,double *dest);
5void cvt_w_s(float *source,int *dest);
6void cvt_w_d(double *source,int *dest);
7void cvt_l_s(float *source,long long *dest);
8void cvt_l_d(double *source,long long *dest);
9void cvt_d_s(float *source,double *dest);
10void cvt_s_d(double *source,float *dest);
11void round_l_s(float *source,long long *dest);
12void round_w_s(float *source,int *dest);
13void trunc_l_s(float *source,long long *dest);
14void trunc_w_s(float *source,int *dest);
15void ceil_l_s(float *source,long long *dest);
16void ceil_w_s(float *source,int *dest);
17void floor_l_s(float *source,long long *dest);
18void floor_w_s(float *source,int *dest);
19void round_l_d(double *source,long long *dest);
20void round_w_d(double *source,int *dest);
21void trunc_l_d(double *source,long long *dest);
22void trunc_w_d(double *source,int *dest);
23void ceil_l_d(double *source,long long *dest);
24void ceil_w_d(double *source,int *dest);
25void floor_l_d(double *source,long long *dest);
26void floor_w_d(double *source,int *dest);
27void c_f_s();
28void c_un_s(float *source,float *target);
29void c_eq_s(float *source,float *target);
30void c_ueq_s(float *source,float *target);
31void c_olt_s(float *source,float *target);
32void c_ult_s(float *source,float *target);
33void c_ole_s(float *source,float *target);
34void c_ule_s(float *source,float *target);
35void c_sf_s(float *source,float *target);
36void c_ngle_s(float *source,float *target);
37void c_seq_s(float *source,float *target);
38void c_ngl_s(float *source,float *target);
39void c_lt_s(float *source,float *target);
40void c_nge_s(float *source,float *target);
41void c_le_s(float *source,float *target);
42void c_ngt_s(float *source,float *target);
43void c_f_d();
44void c_un_d(double *source,double *target);
45void c_eq_d(double *source,double *target);
46void c_ueq_d(double *source,double *target);
47void c_olt_d(double *source,double *target);
48void c_ult_d(double *source,double *target);
49void c_ole_d(double *source,double *target);
50void c_ule_d(double *source,double *target);
51void c_sf_d(double *source,double *target);
52void c_ngle_d(double *source,double *target);
53void c_seq_d(double *source,double *target);
54void c_ngl_d(double *source,double *target);
55void c_lt_d(double *source,double *target);
56void c_nge_d(double *source,double *target);
57void c_le_d(double *source,double *target);
58void c_ngt_d(double *source,double *target);
59void add_s(float *source1,float *source2,float *target);
60void sub_s(float *source1,float *source2,float *target);
61void mul_s(float *source1,float *source2,float *target);
62void div_s(float *source1,float *source2,float *target);
63void sqrt_s(float *source,float *target);
64void abs_s(float *source,float *target);
65void mov_s(float *source,float *target);
66void neg_s(float *source,float *target);
67void add_d(double *source1,double *source2,double *target);
68void sub_d(double *source1,double *source2,double *target);
69void mul_d(double *source1,double *source2,double *target);
70void div_d(double *source1,double *source2,double *target);
71void sqrt_d(double *source,double *target);
72void abs_d(double *source,double *target);
73void mov_d(double *source,double *target);
74void neg_d(double *source,double *target);