xref: /csrg-svn/lib/libm/mc68881/atan.s (revision 61285)
142215Sbostic/*-
2*61285Sbostic * Copyright (c) 1990, 1993
3*61285Sbostic *	The Regents of the University of California.  All rights reserved.
442215Sbostic *
542215Sbostic * This code is derived from software contributed to Berkeley by
642215Sbostic * the Systems Programming Group of the University of Utah Computer
742215Sbostic * Science Department.
842215Sbostic *
942215Sbostic * %sccs.include.redist.c%
1042215Sbostic *
11*61285Sbostic *	@(#)atan.s	8.1 (Berkeley) 06/04/93
1242215Sbostic */
1342215Sbostic
1442215Sbostic/* atan(x) */
1542215Sbostic
1642215Sbostic	.text
1742215Sbostic	.globl	_atan
1842215Sbostic
1942215Sbostic_atan:
2042215Sbostic	fatand	sp@(4),fp0
2142215Sbostic	fmoved	fp0,sp@-
2242215Sbostic	movel	sp@+,d0
2342215Sbostic	movel	sp@+,d1
2442215Sbostic	rts
25