]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/x86_64/fpu/s_scalbnl.S
x86-64: Add vector log1p/log1pf implementation to libmvec
[thirdparty/glibc.git] / sysdeps / x86_64 / fpu / s_scalbnl.S
CommitLineData
5f93cd52 1/*
5f93cd52
UD
2 * Public domain.
3 */
4
5#include <machine/asm.h>
6
7ENTRY(__scalbnl)
8 movl %edi,-4(%rsp)
9 fildl -4(%rsp)
10 fldt 8(%rsp)
11 fscale
12 fstp %st(1)
13 ret
14END (__scalbnl)