]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Function name typo error in non-PIC case, fixed in this patch.
authorChung-Lin Tang <cltang@codesourcery.com>
Thu, 5 Feb 2015 14:19:36 +0000 (06:19 -0800)
committerChung-Lin Tang <cltang@codesourcery.com>
Thu, 5 Feb 2015 14:19:36 +0000 (06:19 -0800)
ChangeLog
sysdeps/nios2/machine-gmon.h

index 50e81535e38a759b79f3bd7f11c26274824a1e2c..d2051e28325f9724dfc4f8b8a8a8d7bdacfbbe47 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-02-05  Chung-Lin Tang  <cltang@codesourcery.com>
+
+       * sysdeps/nios2/machine-gmon.h (NIOS2_MCOUNT_CALL): Correct name of
+       called function in non-PIC case.
+
 2015-01-31  David S. Miller  <davem@davemloft.net>
 
        * sysdeps/sparc/sparc32/bits/atomic.h
index 1f0ea8ff7022b82a6b09214657131581285f74fa..039d25367e0c656bbddfda3a8cc241f0b74f3510 100644 (file)
@@ -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                                         \