From: Jason Thorpe Date: Wed, 2 Oct 2002 00:57:53 +0000 (+0000) Subject: * config/vax/elf.h (FUNCTION_PROFILER): Fix __mcount call. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3b5742ab585fcb802c4e098494051abd956b4b54;p=gcc.git * config/vax/elf.h (FUNCTION_PROFILER): Fix __mcount call. From-SVN: r57713 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a4a53a410a9..55764a2ebb7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-10-01 Jason Thorpe + + * config/vax/elf.h (FUNCTION_PROFILER): Fix __mcount call. + 2002-10-01 Richard Henderson * calls.c (precompute_register_parameters): Force non-legitimate diff --git a/gcc/config/vax/elf.h b/gcc/config/vax/elf.h index 2f1a37566cd..ccdb74c7d2c 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. */