From: Roland McGrath Date: Thu, 13 Jun 1996 22:49:37 +0000 (+0000) Subject: Thu Jun 13 00:02:25 1996 Roland McGrath X-Git-Tag: upstream/2.20~22381 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9f70e81bcaa12b0673cd0879d6f4a21ad6dddce5;p=platform%2Fupstream%2Flinaro-glibc.git Thu Jun 13 00:02:25 1996 Roland McGrath * sysdeps/generic/machine-gmon.h [NO_UNDERSCORES]: Define mcount as weak alias for _mcount. * sysdeps/alpha/_mcount.S (mcount): Define as weak alias. --- diff --git a/sysdeps/alpha/_mcount.S b/sysdeps/alpha/_mcount.S index 1730760..e813ebd 100644 --- a/sysdeps/alpha/_mcount.S +++ b/sysdeps/alpha/_mcount.S @@ -1,5 +1,5 @@ /* Machine-specific calling sequence for `mcount' profiling function. alpha -Copyright (C) 1995 Free Software Foundation, Inc. +Copyright (C) 1995, 1996 Free Software Foundation, Inc. Contributed by David Mosberger (davidm@cs.arizona.edu). This file is part of the GNU C Library. @@ -41,6 +41,7 @@ respectively in gmon.c language...). */ .set noreorder LEAF(_mcount, 0xb0) +weak_alias (_mcount, mcount) .prologue 0 subq sp, 0xb0, sp diff --git a/sysdeps/generic/machine-gmon.h b/sysdeps/generic/machine-gmon.h index 24101f3..3c6fb68 100644 --- a/sysdeps/generic/machine-gmon.h +++ b/sysdeps/generic/machine-gmon.h @@ -42,3 +42,7 @@ void _mcount (void) \ mcount_internal ((u_long) __builtin_return_address (0), \ (u_long) __builtin_return_address (1)); \ } + +#ifdef NO_UNDERSCORES +weak_alias (_mcount, mcount) +#endif