summaryrefslogtreecommitdiff
path: root/sysdeps/libm-i387/e_scalbf.S
blob: 7de03db287fbf5a73f7bb03a85aac8ef6c493e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * 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
	ret
END(__ieee754_scalbf)