mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-30 00:31:08 +00:00
dc1e5eeb25
The compiler may substitute calls to sin or cos with calls to sincos, thus we should have the same optimized implementations for sincos. The optimized implementations may produce results that differ, that also makes sure that the sincos call aggrees with the sin and cos calls.
4 lines
131 B
C
4 lines
131 B
C
#define __sincos __sincos_fma
|
|
#define SECTION __attribute__ ((section (".text.fma")))
|
|
#include <sysdeps/ieee754/dbl-64/s_sincos.c>
|