From dbdb6189d5d66b165b4b502498572cbe7e78874e Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 13 Feb 1996 05:46:59 +0000 Subject: Tue Feb 13 00:12:12 1996 Roland McGrath * gmon/Makefile (headers): Remove machine-gmon.h. * sysdeps/stub/machine-gmon.h, sysdeps/i386/machine-gmon.h: Removed. * gmon/mcount.c [! NO_UNDERSCORES] (_mcount): Specify "mcount" as the asm name. (_mcount): Define normally, taking no args. Use __builtin_return_address to fetch PC values of caller and caller's caller. Tue Feb 13 00:12:12 1996 Roland McGrath * gmon/Makefile (headers): Remove machine-gmon.h. * sysdeps/stub/machine-gmon.h, sysdeps/i386/machine-gmon.h: Removed. * gmon/mcount.c [! NO_UNDERSCORES] (_mcount): Specify "mcount" as the asm name. (_mcount): Define normally, taking no args. Use __builtin_return_address to fetch PC values of caller and caller's caller. * Makerules: Rewrote rules to update libc archives of all flavors. Define separate specific rules for each flavor using o-iterator. * sysdeps/unix/Makefile: Include s-proto.d only ifdef subdir. Sat Feb 10 11:35:16 1996 Andreas Schwab * Makerules (ar-symtab-name): New macro. Replace all occurences of __.SYMDEF by $(ar-symtab-name). * sysdeps/unix/sysv/Makefile (ar-symtab-name): Define as empty. * Makefile (configure, %/configure): Depend on aclocal.m4. * Make-dist (configure, %/configure): Likewise. * sysdeps/unix/Makefile: Include s-proto.d for its deps. * gmon/sys/gmon.h: Don't include machine-gmon.h; those defns are only needed in the implementation, not for any users. * time/northamerica: Updated from ADO 96c, new rules for Mexico in 1996. --- sysdeps/i386/machine-gmon.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 sysdeps/i386/machine-gmon.h (limited to 'sysdeps/i386') diff --git a/sysdeps/i386/machine-gmon.h b/sysdeps/i386/machine-gmon.h deleted file mode 100644 index 4128390b8b..0000000000 --- a/sysdeps/i386/machine-gmon.h +++ /dev/null @@ -1,29 +0,0 @@ -/* Machine-specific calling sequence for `mcount' profiling function. i386 -Copyright (C) 1995 Free Software Foundation, Inc. -This file is part of the GNU C Library. - -The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with the GNU C Library; see the file COPYING.LIB. If -not, write to the Free Software Foundation, Inc., 675 Mass Ave, -Cambridge, MA 02139, USA. */ - -#define _MCOUNT_DECL static inline void _mcount - -/* Call _mcount with our the return PC for our caller, - and the return PC our caller will return to. */ -#define MCOUNT \ -void mcount (u_long arg) \ -{ \ - _mcount (((u_long *) (&arg)[-2])[-1], \ - (&arg)[-1]); \ -} -- cgit 1.4.1