Add check for _real_mcount being 0 back in again.

From-SVN: r5643
This commit is contained in:
Michael Meissner 1993-10-06 19:39:25 +00:00
parent ed882fd5eb
commit 9e20879ef1
1 changed files with 4 additions and 1 deletions

View File

@ -186,6 +186,9 @@ do \
else \
fprintf (FILE, "\tmovl %s_real_mcount,%%eax\n", underscore); \
\
fprintf (FILE, "\tcmpl $0,%%eax\n"); \
fprintf (FILE, "\tje 1f\n"); \
\
if (flag_omit_frame_pointer) \
abort (); \
else \
@ -209,7 +212,7 @@ do \
} \
\
fprintf (FILE, "\tcall *%%eax\n"); \
fprintf (FILE, "\taddl $12,%%esp\n"); \
fprintf (FILE, "\taddl $12,%%esp\n1:\n"); \
} \
} \
while (0)