remove bogus indirect call for profiling (mcount)

This commit is contained in:
christos 2017-05-29 03:51:24 +00:00
parent ce18feac4c
commit dd61a7a6c2

View File

@ -50,9 +50,9 @@ along with GCC; see the file COPYING3. If not see
#define FUNCTION_PROFILER(FILE, LABELNO) \
{ \
if (TARGET_64BIT && flag_pic) \
fprintf (FILE, "\tcall *__mcount@PLT\n"); \
fprintf (FILE, "\tcall __mcount@PLT\n"); \
else if (flag_pic) \
fprintf (FILE, "\tcall *__mcount@PLT\n"); \
fprintf (FILE, "\tcall __mcount@PLT\n"); \
else \
fprintf (FILE, "\tcall __mcount\n"); \
}