1 /*- 2 * Copyright (c) 1983, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * %sccs.include.proprietary.c% 6 * 7 * @(#)DEFS.h 8.1 (Berkeley) 06/04/93 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