mirror of
https://sourceware.org/git/glibc.git
synced 2025-09-11 12:10:50 +03:00
The CORE-MATH exp2m1f implementation showed slight worse latency when using x86_64 baseline ABI. This patch adds a ifunc variant with similar performance for x86_64-v3. Reviewed-by: Noah Goldstein <goldstein.w.n@gmail.com> Reviewed-by: DJ Delorie <dj@redhat.com>
5 lines
135 B
C
5 lines
135 B
C
#define __exp2m1f __exp2m1f_fma
|
|
#define SECTION __attribute__ ((section (".text.fma")))
|
|
|
|
#include <sysdeps/ieee754/flt-32/s_exp2m1f.c>
|