re PR target/47792 (concurrence.h:292:9: error: '__gthread_mutex_destroy' was not...
authorJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>
Fri, 18 Feb 2011 19:02:31 +0000 (19:02 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Fri, 18 Feb 2011 19:02:31 +0000 (19:02 +0000)
PR target/47792
* gthr-dce.h (__gthread_mutx_destroy): Fix typo in name.

From-SVN: r170281

gcc/ChangeLog
gcc/gthr-dce.h

index a6c34f4facdc552e99c26c9f89cee831936f8305..32c5e7c8e13d6eb3b47da86662f1b5156df80311 100644 (file)
@@ -1,3 +1,8 @@
+2011-02-18  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+       PR target/47792
+       * gthr-dce.h (__gthread_mutx_destroy): Fix typo in name.
+
 2011-02-18  Anatoly Sokolov  <aesok@post.ru>
 
        * config/m32r/m32r.h (REG_OK_FOR_BASE_P, REG_OK_FOR_INDEX_P,
index 4226359f0a0e2360b48210aab45ed24adf0875f4..d32155a9352b581a9ef67ef487400aa3cd2d4deb 100644 (file)
@@ -483,7 +483,7 @@ __gthread_mutex_init_function (__gthread_mutex_t *__mutex)
 }
 
 static inline int
-__gthread_mutx_destroy (__gthread_mutex_t *__mutex)
+__gthread_mutex_destroy (__gthread_mutex_t *__mutex)
 {
   if (__gthread_active_p ())
     return __gthrw_(pthread_mutex_destroy) (__mutex);