hurd: fix fcntl visibility
[glibc.git] / sysdeps / x86_64 / fpu / s_scalbnl.S
blob6c7683c32b128dc3aae93fca5e00ea9037c78b05
1 /*
2  * Written by J.T. Conklin <jtc@netbsd.org>.
3  * Changes for long double by Ulrich Drepper <drepper@cygnus.com>
4  * Changes for x86-64 by Andreas Jaeger <aj@suse.de>=09
5  * Public domain.
6  */
8 #include <machine/asm.h>
10 ENTRY(__scalbnl)
11         movl    %edi,-4(%rsp)
12         fildl   -4(%rsp)
13         fldt    8(%rsp)
14         fscale
15         fstp    %st(1)
16         ret
17 END (__scalbnl)