1/*
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)
15

source code of glibc/sysdeps/x86_64/fpu/s_scalbnl.S