1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00

Thu Jun 13 00:02:25 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>

* sysdeps/generic/machine-gmon.h [NO_UNDERSCORES]: Define mcount as
	weak alias for _mcount.
	* sysdeps/alpha/_mcount.S (mcount): Define as weak alias.
This commit is contained in:
Roland McGrath
1996-06-13 22:49:37 +00:00
parent 5c5ae36fd8
commit 9f70e81bca
2 changed files with 6 additions and 1 deletions

View File

@ -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