xref: /original-bsd/lib/libc/hp300/gen/muldf3.s (revision 325d3b5e)
1c0245939Sbostic/*-
2*325d3b5eSbostic * Copyright (c) 1990, 1993
3*325d3b5eSbostic *	The Regents of the University of California.  All rights reserved.
4c0245939Sbostic *
5c0245939Sbostic * This code is derived from software contributed to Berkeley by
6c0245939Sbostic * the Systems Programming Group of the University of Utah Computer
7c0245939Sbostic * Science Department.
8c0245939Sbostic *
9c0245939Sbostic * %sccs.include.redist.c%
10c0245939Sbostic */
11c0245939Sbostic
12c0245939Sbostic#if defined(LIBC_SCCS) && !defined(lint)
13*325d3b5eSbostic	.asciz "@(#)muldf3.s	8.1 (Berkeley) 06/04/93"
14c0245939Sbostic#endif /* LIBC_SCCS and not lint */
15c0245939Sbostic
16c0245939Sbostic#include "DEFS.h"
17c0245939Sbostic
18c0245939Sbostic/* double * double */
19c0245939SbosticENTRY(__muldf3)
20c0245939Sbostic	fmoved	sp@(4),fp0
21c0245939Sbostic	fmuld	sp@(12),fp0
22c0245939Sbostic	fmoved	fp0,sp@-
23c0245939Sbostic	movel	sp@+,d0
24c0245939Sbostic	movel	sp@+,d1
25c0245939Sbostic	rts
26