Commit 6dfaf9ba by Richard Henderson Committed by Richard Henderson

gmon-sol2.c (internal_mcount): Assume either _start or _init begins the text segment.

        * config/sparc/gmon-sol2.c (internal_mcount): Assume either
        _start or _init begins the text segment.

From-SVN: r51248
parent 0c769cf8
2002-03-23 Richard Henderson <rth@redhat.com>
* config/sparc/gmon-sol2.c (internal_mcount): Assume either
_start or _init begins the text segment.
2002-03-23 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.h (RETURN_IN_MEMORY): Cast to HOST_WIDE_INT
......
......@@ -291,8 +291,10 @@ static void internal_mcount(selfpc, frompcindex)
if(!already_setup) {
extern char etext[];
extern char _start[];
extern char _init[];
already_setup = 1;
monstartup(0, (char *)etext);
monstartup(_start < _init ? _start : _init, etext);
#ifdef USE_ONEXIT
on_exit(_mcleanup, 0);
#else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment