2012-03-20 Richard Guenther <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 20 Mar 2012 11:18:57 +0000 (11:18 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 20 Mar 2012 11:18:57 +0000 (11:18 +0000)
PR gcov-profile/52627
* libgcov.c (init_mx): Fix mutex name.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@185569 138bc75d-0d04-0410-961f-82ee72b054a4

libgcc/ChangeLog
libgcc/libgcov.c

index 744dd93..11379bb 100644 (file)
@@ -1,3 +1,8 @@
+2012-03-20  Richard Guenther  <rguenther@suse.de>
+
+       PR gcov-profile/52627
+       * libgcov.c (init_mx): Fix mutex name.
+
 2012-03-16  Tristan Gingold  <gingold@adacore.com>
 
        * config/ia64/vms-unwind.h: Remove ulong (and replace
index 1603912..ee7fda4 100644 (file)
@@ -713,7 +713,7 @@ __gthread_mutex_t __gcov_flush_mx ATTRIBUTE_HIDDEN;
 static void
 init_mx (void)
 {
-  __GTHREAD_MUTEX_INIT_FUNCTION (&mx);
+  __GTHREAD_MUTEX_INIT_FUNCTION (&__gcov_flush_mx);
 }
 static void
 init_mx_once (void)