xref: /original-bsd/lib/libc/vax/gen/lshrsi3.s (revision f8e19ae4)
1b7d9232fSbostic/*-
2*f8e19ae4Sbostic * Copyright (c) 1992, 1993
3*f8e19ae4Sbostic *	The Regents of the University of California.  All rights reserved.
4b7d9232fSbostic *
5b7d9232fSbostic * %sccs.include.redist.c%
6b7d9232fSbostic */
7b7d9232fSbostic
8b7d9232fSbostic#if defined(LIBC_SCCS) && !defined(lint)
9*f8e19ae4Sbostic	.asciz "@(#)lshrsi3.s	8.1 (Berkeley) 06/04/93"
10b7d9232fSbostic#endif /* LIBC_SCCS and not lint */
11b7d9232fSbostic
12b7d9232fSbostic#include "DEFS.h"
13b7d9232fSbostic
14b7d9232fSbosticENTRY(__lshrsi3, 0)
15b7d9232fSbostic	movl	4(ap),r0
16b7d9232fSbostic	subl3	8(ap),$32,r1
17b7d9232fSbostic	extzv	8(ap),r1,r0,r0
18b7d9232fSbostic	ret
19