1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

silence warning when assertions are disabled.

llvm-svn: 49371
This commit is contained in:
Chris Lattner 2008-04-08 05:49:09 +00:00
parent 1cf9e1e337
commit 7498965b5a

View File

@ -204,7 +204,7 @@ private:
waitFor = 0;
int result = pthread_cond_broadcast( &condition );
assert( result == 0 );
assert(result == 0); result=result;
}
size_t n;