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