1*55308Smckusick /* 2*55308Smckusick * Copyright (c) 1992 The Regents of the University of California. 3*55308Smckusick * All rights reserved. 4*55308Smckusick * 5*55308Smckusick * %sccs.include.redist.c% 6*55308Smckusick * 7*55308Smckusick * @(#)profile.h 7.1 (Berkeley) 07/16/92 8*55308Smckusick */ 9*55308Smckusick 10*55308Smckusick #define _MCOUNT_DECL static void _mcount 11*55308Smckusick 12*55308Smckusick #define MCOUNT \ 13*55308Smckusick asm(".text; .globl mcount; mcount: pushl 16(fp); calls $1,__mcount; rsb"); 14