diff options
author | Chung-Lin Tang <cltang@codesourcery.com> | 2015-02-05 06:19:36 -0800 |
---|---|---|
committer | Chung-Lin Tang <cltang@codesourcery.com> | 2015-02-05 06:19:36 -0800 |
commit | 34c5604814cb97264aa2393800967b0b0e4585cd (patch) | |
tree | 4b6457f9707559ec9f503993030cbc2540e1c9d4 /sysdeps/nios2 | |
parent | edac0a60c7514b8c9b59488cffdac6b22267e757 (diff) | |
download | glibc-34c5604814cb97264aa2393800967b0b0e4585cd.tar.gz glibc-34c5604814cb97264aa2393800967b0b0e4585cd.tar.xz glibc-34c5604814cb97264aa2393800967b0b0e4585cd.zip |
Function name typo error in non-PIC case, fixed in this patch.
Diffstat (limited to 'sysdeps/nios2')
-rw-r--r-- | sysdeps/nios2/machine-gmon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/nios2/machine-gmon.h b/sysdeps/nios2/machine-gmon.h index 1f0ea8ff70..039d25367e 100644 --- a/sysdeps/nios2/machine-gmon.h +++ b/sysdeps/nios2/machine-gmon.h @@ -35,7 +35,7 @@ static void __attribute_used__ __mcount_internal (u_long frompc, u_long selfpc) "callr r2\n\t" #else #define NIOS2_MCOUNT_CALL \ - "call\tmcount_internal\n\t" + "call\t__mcount_internal\n\t" #endif #define MCOUNT \ |