summaryrefslogtreecommitdiff
path: root/sysdeps/libm-i387/e_scalbf.S
blob: 4c62134a0c38dbb96cfd9ef23e8fa5165890dd7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Written by J.T. Conklin <jtc@netbsd.org>.
 * Public domain.
 * Adapted for float type by Ulrich Drepper <drepper@cygnus.com>.
 */

#include <machine/asm.h>

RCSID("$NetBSD: $")

ENTRY(__ieee754_scalbf)
	flds	8(%esp)
	flds	4(%esp)
	fscale
	fstp	%st(1)
	ret
END(__ieee754_scalbf)