about summary refs log tree commit diff
path: root/sysdeps/i386/fpu/s_significand.S
blob: db4e418b7721ff66bd612e9a3d539f5bb2813636 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Public domain.
 */

#include <machine/asm.h>

RCSID("$NetBSD: s_significand.S,v 1.4 1995/05/09 00:21:47 jtc Exp $")

ENTRY(__significand)
	fldl	4(%esp)
	fxtract
	fstp	%st(1)
	ret
END (__significand)
weak_alias (__significand, significand)