Last change
on this file was 2006, checked in by bird, 20 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
427 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * Written by J.T. Conklin <jtc@netbsd.org>.
|
---|
3 | * Public domain.
|
---|
4 | */
|
---|
5 |
|
---|
6 | #include <machine/asm.h>
|
---|
7 |
|
---|
8 | __FBSDID("$FreeBSD: src/lib/msun/i387/s_scalbnf.S,v 1.2 2005/03/07 04:52:43 das Exp $");
|
---|
9 | /* RCSID("$NetBSD: s_scalbnf.S,v 1.4 1999/01/02 05:15:40 kristerw Exp $") */
|
---|
10 |
|
---|
11 | ENTRY(scalbnf)
|
---|
12 | fildl 8(%esp)
|
---|
13 | flds 4(%esp)
|
---|
14 | fscale
|
---|
15 | fstp %st(1) /* bug fix for fp stack overflow */
|
---|
16 | ret
|
---|
17 |
|
---|
18 | .globl CNAME(ldexpf)
|
---|
19 | .set CNAME(ldexpf),CNAME(scalbnf)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.