xref: /csrg-svn/lib/libc/hp300/gen/floatsidf.s (revision 61117)
143005Sbostic/*-
2*61117Sbostic * Copyright (c) 1990, 1993
3*61117Sbostic *	The Regents of the University of California.  All rights reserved.
443005Sbostic *
543005Sbostic * This code is derived from software contributed to Berkeley by
643005Sbostic * the Systems Programming Group of the University of Utah Computer
743005Sbostic * Science Department.
843005Sbostic *
943005Sbostic * %sccs.include.redist.c%
1043005Sbostic */
1143005Sbostic
1243005Sbostic#if defined(LIBC_SCCS) && !defined(lint)
13*61117Sbostic	.asciz "@(#)floatsidf.s	8.1 (Berkeley) 06/04/93"
1443005Sbostic#endif /* LIBC_SCCS and not lint */
1543005Sbostic
1643005Sbostic#include "DEFS.h"
1743005Sbostic
1843005Sbostic/* (double) int */
1943005SbosticENTRY(__floatsidf)
2043005Sbostic	fmovel	sp@(4),fp0
2143005Sbostic	fmoved	fp0,sp@-
2243005Sbostic	movel	sp@+,d0
2343005Sbostic	movel	sp@+,d1
2443005Sbostic	rts
2543005Sbostic
26