this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

src/libm: Moved various functions and structs to common math.h

Thomas A dccbb26c 4d42e550

+8 -8
-8
src/libm/Source/Intel/math.h
··· 639 639 640 640 #endif /* __WANT_EXTENSIONS__ */ 641 641 642 - struct __float2 { float __sinval; float __cosval; }; 643 - struct __double2 { double __sinval; double __cosval; }; 644 - 645 - extern struct __float2 __sincosf_stret(float v); 646 - extern struct __double2 __sincos_stret(double v); 647 - extern struct __float2 __sincospif_stret(float v); 648 - extern struct __double2 __sincospi_stret(double v); 649 - 650 642 #ifdef __cplusplus 651 643 } 652 644 #endif
+8
src/libm/Source/math.h
··· 32 32 #error Unknown architecture 33 33 #endif 34 34 35 + struct __float2 { float __sinval; float __cosval; }; 36 + struct __double2 { double __sinval; double __cosval; }; 37 + 38 + extern struct __float2 __sincosf_stret(float v); 39 + extern struct __double2 __sincos_stret(double v); 40 + extern struct __float2 __sincospif_stret(float v); 41 + extern struct __double2 __sincospi_stret(double v); 42 + 35 43 #endif /* __MATH_H__ */