|
From: <sv...@va...> - 2008-07-29 17:04:23
|
Author: bart
Date: 2008-07-29 18:04:31 +0100 (Tue, 29 Jul 2008)
New Revision: 8476
Log:
Removed duplicate volatile keyword such that the compiler does no longer print a warning.
Modified:
trunk/helgrind/hg_intercepts.c
Modified: trunk/helgrind/hg_intercepts.c
===================================================================
--- trunk/helgrind/hg_intercepts.c 2008-07-29 16:57:06 UTC (rev 8475)
+++ trunk/helgrind/hg_intercepts.c 2008-07-29 17:04:31 UTC (rev 8476)
@@ -177,7 +177,7 @@
so is mentioned by name in glibc-*helgrind*.supp. */
static void* mythread_wrapper ( void* xargsV )
{
- volatile Word volatile* xargs = (volatile Word volatile*) xargsV;
+ volatile Word* xargs = (volatile Word*) xargsV;
void*(*fn)(void*) = (void*(*)(void*))xargs[0];
void* arg = (void*)xargs[1];
pthread_t me = pthread_self();
|