diff options
author | Stephane Carrez <Stephane.Carrez@worldnet.fr> | 2001-11-25 17:28:14 +0100 |
---|---|---|
committer | Stephane Carrez <ciceron@gcc.gnu.org> | 2001-11-25 17:28:14 +0100 |
commit | f4b00a9a2935139dddcb43dab213c037d0089912 (patch) | |
tree | b7dd8eb69407d52e0f87a8a25fc2dffa258098e6 /gcc | |
parent | 338d90b89f23deaa5ce2ae80b8adf9cb52808679 (diff) | |
download | gcc-f4b00a9a2935139dddcb43dab213c037d0089912.zip gcc-f4b00a9a2935139dddcb43dab213c037d0089912.tar.gz gcc-f4b00a9a2935139dddcb43dab213c037d0089912.tar.bz2 |
m68hc11.h (FUNCTION_PROFILER): Fix label name passed to mcount.
* config/m68hc11/m68hc11.h (FUNCTION_PROFILER): Fix label name
passed to mcount.
From-SVN: r47319
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/m68hc11/m68hc11.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a324088..a999fa9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-11-25 Stephane Carrez <Stephane.Carrez@worldnet.fr> + + * config/m68hc11/m68hc11.h (FUNCTION_PROFILER): Fix label name + passed to mcount. + Sun Nov 25 06:22:09 2001 Douglas B. Rupp <rupp@gnat.com> * config/alpha/vms-ld.c, config/alpha/vms-cc.c: New files. diff --git a/gcc/config/m68hc11/m68hc11.h b/gcc/config/m68hc11/m68hc11.h index 3cd3a2a..8ac2f98 100644 --- a/gcc/config/m68hc11/m68hc11.h +++ b/gcc/config/m68hc11/m68hc11.h @@ -1130,7 +1130,7 @@ typedef struct m68hc11_args /* Output assembler code to FILE to increment profiler label # LABELNO for profiling a function entry. */ #define FUNCTION_PROFILER(FILE, LABELNO) \ - asm_fprintf (FILE, "\tldy LP%d\n\tjsr mcount\n", (LABELNO)) + asm_fprintf (FILE, "\tldy\t.LP%d\n\tjsr mcount\n", (LABELNO)) /* Output assembler code to FILE to initialize this source file's basic block profiling info, if that has not already been done. */ |