xref: /original-bsd/lib/libc/hp300/gen/lshlsi3.s (revision 325d3b5e)
195e16ba8Sbostic/*-
2*325d3b5eSbostic * Copyright (c) 1990, 1993
3*325d3b5eSbostic *	The Regents of the University of California.  All rights reserved.
495e16ba8Sbostic *
595e16ba8Sbostic * This code is derived from software contributed to Berkeley by
695e16ba8Sbostic * the Systems Programming Group of the University of Utah Computer
795e16ba8Sbostic * Science Department.
895e16ba8Sbostic *
995e16ba8Sbostic * %sccs.include.redist.c%
1095e16ba8Sbostic */
1195e16ba8Sbostic
1295e16ba8Sbostic#if defined(LIBC_SCCS) && !defined(lint)
13*325d3b5eSbostic	.asciz "@(#)lshlsi3.s	8.1 (Berkeley) 06/04/93"
1495e16ba8Sbostic#endif /* LIBC_SCCS and not lint */
1595e16ba8Sbostic
1695e16ba8Sbostic#include "DEFS.h"
1795e16ba8Sbostic
1895e16ba8Sbostic/* unsigned << unsigned */
1995e16ba8SbosticENTRY(__lshlsi3)
2095e16ba8Sbostic	movel	sp@(8),d1
2195e16ba8Sbostic	movel	sp@(4),d0
2295e16ba8Sbostic	lsll	d1,d0
2395e16ba8Sbostic	rts
24