xref: /csrg-svn/lib/libcompat/4.1/vax/DEFS.h (revision 61239)
147919Sbostic /*-
2*61239Sbostic  * Copyright (c) 1983, 1993
3*61239Sbostic  *	The Regents of the University of California.  All rights reserved.
421411Sdist  *
547919Sbostic  * %sccs.include.proprietary.c%
647919Sbostic  *
7*61239Sbostic  *	@(#)DEFS.h	8.1 (Berkeley) 06/04/93
821411Sdist  */
913791Ssam 
1013791Ssam #ifdef PROF
1113791Ssam #define	ENTRY(x)	.globl _/**/x; .align 2; _/**/x: .word 0; \
1213791Ssam 			.data; 1:; .long 0; .text; moval 1b,r0; jsb mcount
1313791Ssam #define	ASENTRY(x)	.globl x; .align 2; x: .word 0; \
1413791Ssam 			.data; 1:; .long 0; .text; moval 1b,r0; jsb mcount
1513791Ssam #else
1613791Ssam #define	ENTRY(x)	.globl _/**/x; .align 2; _/**/x: .word 0
1713791Ssam #define	ASENTRY(x)	.globl x; .align 2; x: .word 0
1813791Ssam #endif
19