diff options
author | Jason Thorpe <thorpej@wasabisystems.com> | 2002-10-02 00:57:53 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@gcc.gnu.org> | 2002-10-02 00:57:53 +0000 |
commit | 3b5742ab585fcb802c4e098494051abd956b4b54 (patch) | |
tree | 6337af0326394407b75ef2427eecfc8a3e9e318e /gcc | |
parent | 2e88ae226707a6285909db660fe2a101ac7e0ecc (diff) | |
download | gcc-3b5742ab585fcb802c4e098494051abd956b4b54.zip gcc-3b5742ab585fcb802c4e098494051abd956b4b54.tar.gz gcc-3b5742ab585fcb802c4e098494051abd956b4b54.tar.bz2 |
* config/vax/elf.h (FUNCTION_PROFILER): Fix __mcount call.
From-SVN: r57713
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/vax/elf.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a4a53a4..55764a2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-10-01 Jason Thorpe <thorpej@wasabisystems.com> + + * config/vax/elf.h (FUNCTION_PROFILER): Fix __mcount call. + 2002-10-01 Richard Henderson <rth@redhat.com> * calls.c (precompute_register_parameters): Force non-legitimate diff --git a/gcc/config/vax/elf.h b/gcc/config/vax/elf.h index 2f1a375..ccdb74c 100644 --- a/gcc/config/vax/elf.h +++ b/gcc/config/vax/elf.h @@ -35,7 +35,7 @@ Boston, MA 02111-1307, USA. */ /* Profiling routine. */ #undef FUNCTION_PROFILER #define FUNCTION_PROFILER(FILE, LABELNO) \ - fprintf (FILE, "\tmovab .LP%d,%sr0\n\tjsb __mcount+2\n", (LABELNO), \ + fprintf (FILE, "\tmovab .LP%d,%sr0\n\tjsb __mcount\n", (LABELNO), \ REGISTER_PREFIX) /* Let's be re-entrant. */ |