xref: /original-bsd/lib/libcompat/4.1/vax/DEFS.h (revision e59fb703)
1 /*-
2  * Copyright (c) 1983 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.proprietary.c%
6  *
7  *	@(#)DEFS.h	5.2 (Berkeley) 04/12/91
8  */
9 
10 #ifdef PROF
11 #define	ENTRY(x)	.globl _/**/x; .align 2; _/**/x: .word 0; \
12 			.data; 1:; .long 0; .text; moval 1b,r0; jsb mcount
13 #define	ASENTRY(x)	.globl x; .align 2; x: .word 0; \
14 			.data; 1:; .long 0; .text; moval 1b,r0; jsb mcount
15 #else
16 #define	ENTRY(x)	.globl _/**/x; .align 2; _/**/x: .word 0
17 #define	ASENTRY(x)	.globl x; .align 2; x: .word 0
18 #endif
19