summaryrefslogtreecommitdiff
path: root/gcc/config/i386/386bsd.h
diff options
context:
space:
mode:
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1992-11-24 18:28:33 +0000
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1992-11-24 18:28:33 +0000
commit07fff4f73be43ba2fe49ff462be796aee47c0578 (patch)
treeaf710fe5eb8ae62193327135fd6e776348bda31d /gcc/config/i386/386bsd.h
parentbb867a6dcf3d8df52a246b03d1684e0fbbeea236 (diff)
downloadgcc-07fff4f73be43ba2fe49ff462be796aee47c0578.tar.gz
(FUNCTION_PROFILER): Use mcount, not _mcount.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@2790 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/386bsd.h')
-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 e33b6e92201..68b10961c8f 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"); \
} \
}