xref: /csrg-svn/lib/libc/vax/gen/modsi3.s (revision 54423)
1*54423Sbostic/*-
2*54423Sbostic * Copyright (c) 1992 The Regents of the University of California.
3*54423Sbostic * All rights reserved.
4*54423Sbostic *
5*54423Sbostic * %sccs.include.redist.c%
6*54423Sbostic */
7*54423Sbostic
8*54423Sbostic#if defined(LIBC_SCCS) && !defined(lint)
9*54423Sbostic	.asciz "@(#)modsi3.s	5.1 (Berkeley) 06/25/92"
10*54423Sbostic#endif /* LIBC_SCCS and not lint */
11*54423Sbostic
12*54423Sbostic#include "DEFS.h"
13*54423Sbostic
14*54423SbosticENTRY(__modsi3, 0)
15*54423Sbostic	divl3	8(ap),4(ap),r0
16*54423Sbostic	mull2	8(ap),r0
17*54423Sbostic	subl3	r0,4(ap),r0
18*54423Sbostic	ret
19