source: vendor/FreeBSD-msun/current/i387/s_scalbnl.S

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: 391 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_scalbnl.S,v 1.1 2005/03/07 04:52:57 das Exp $");
9/* RCSID("$NetBSD: s_scalbnf.S,v 1.4 1999/01/02 05:15:40 kristerw Exp $") */
10
11ENTRY(scalbnl)
12 fildl 16(%esp)
13 fldt 4(%esp)
14 fscale
15 fstp %st(1)
16 ret
17
18.globl CNAME(ldexpl)
19.set CNAME(ldexpl),CNAME(scalbnl)
Note: See TracBrowser for help on using the repository browser.