aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-11-24 18:28:33 +0000
committerRichard Stallman <rms@gnu.org>1992-11-24 18:28:33 +0000
commit3bb56fa8f178e8916782305a81f4218b8d5621da (patch)
treeaf710fe5eb8ae62193327135fd6e776348bda31d
parent70b8cd86033bed2eb96eb9b6165af137302c7dde (diff)
downloadgcc-3bb56fa8f178e8916782305a81f4218b8d5621da.zip
gcc-3bb56fa8f178e8916782305a81f4218b8d5621da.tar.gz
gcc-3bb56fa8f178e8916782305a81f4218b8d5621da.tar.bz2
(FUNCTION_PROFILER): Use mcount, not _mcount.
From-SVN: r2790
-rw-r--r--gcc/config/i386/386bsd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i386/386bsd.h b/gcc/config/i386/386bsd.h
index e33b6e9..68b1096 100644
--- a/gcc/config/i386/386bsd.h
+++ b/gcc/config/i386/386bsd.h
@@ -37,12 +37,12 @@
{ \
fprintf (FILE, "\tleal %sP%d@GOTOFF(%%ebx),%%eax\n", \
LPREFIX, (LABELNO)); \
- fprintf (FILE, "\tcall *_mcount@GOT(%%ebx)\n"); \
+ fprintf (FILE, "\tcall *mcount@GOT(%%ebx)\n"); \
} \
else \
{ \
fprintf (FILE, "\tmovl $%sP%d,%%eax\n", LPREFIX, (LABELNO)); \
- fprintf (FILE, "\tcall _mcount\n"); \
+ fprintf (FILE, "\tcall mcount\n"); \
} \
}