xref: /original-bsd/lib/libc/hp300/gen/ashlsi3.s (revision 325d3b5e)
1769acddfSbostic/*-
2*325d3b5eSbostic * Copyright (c) 1990, 1993
3*325d3b5eSbostic *	The Regents of the University of California.  All rights reserved.
4769acddfSbostic *
5769acddfSbostic * This code is derived from software contributed to Berkeley by
6769acddfSbostic * the Systems Programming Group of the University of Utah Computer
7769acddfSbostic * Science Department.
8769acddfSbostic *
9769acddfSbostic * %sccs.include.redist.c%
10769acddfSbostic */
11769acddfSbostic
12769acddfSbostic#if defined(LIBC_SCCS) && !defined(lint)
13*325d3b5eSbostic	.asciz "@(#)ashlsi3.s	8.1 (Berkeley) 06/04/93"
14769acddfSbostic#endif /* LIBC_SCCS and not lint */
15769acddfSbostic
16769acddfSbostic#include "DEFS.h"
17769acddfSbostic
18769acddfSbostic/* int << int */
19769acddfSbosticENTRY(__ashlsi3)
20769acddfSbostic	movel	sp@(8),d1
21769acddfSbostic	movel	sp@(4),d0
22769acddfSbostic	asll	d1,d0
23769acddfSbostic	rts
24