mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-29 16:21:07 +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
133 B
C
4 lines
133 B
C
#define __sincos __sincos_fma4
|
|
#define SECTION __attribute__ ((section (".text.fma4")))
|
|
#include <sysdeps/ieee754/dbl-64/s_sincos.c>
|