xref: /csrg-svn/lib/libm/mc68881/sinh.s (revision 61285)
142225Sbostic/*-
2*61285Sbostic * Copyright (c) 1990, 1993
3*61285Sbostic *	The Regents of the University of California.  All rights reserved.
442225Sbostic *
542225Sbostic * This code is derived from software contributed to Berkeley by
642225Sbostic * the Systems Programming Group of the University of Utah Computer
742225Sbostic * Science Department.
842225Sbostic *
942225Sbostic * %sccs.include.redist.c%
1042225Sbostic *
11*61285Sbostic *	@(#)sinh.s	8.1 (Berkeley) 06/04/93
1242225Sbostic */
1342225Sbostic
1442225Sbostic/* sinh(x) */
1542225Sbostic
1642225Sbostic	.text
1742225Sbostic	.globl	_sinh
1842225Sbostic
1942225Sbostic_sinh:
2042225Sbostic	fsinhd	sp@(4),fp0
2142225Sbostic	fmoved	fp0,sp@-
2242225Sbostic	movel	sp@+,d0
2342225Sbostic	movel	sp@+,d1
2442225Sbostic	rts
25