summaryrefslogtreecommitdiff
path: root/sysdeps/libm-i387/s_log1p.S
blob: ce8665d3a5c966a42abd0b446a79b1b7f7ad8597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Written by J.T. Conklin <jtc@netbsd.org>.
 * Public domain.
 */

#include <machine/asm.h>

RCSID("$NetBSD: s_log1p.S,v 1.7 1995/05/09 00:10:58 jtc Exp $")

/*
 * Since the fyl2xp1 instruction has such a limited range:
 *	-(1 - (sqrt(2) / 2)) <= x <= sqrt(2) - 1
 * it's not worth trying to use it.
 */

ENTRY(__log1p)
	fldln2
	fldl 4(%esp)
	fld1
	faddp
	fyl2x
	ret
PSEUDO_END (__log1p)
weak_alias (__log1p, log1p)