1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-04-26 11:41:44 +00:00

silence warning when assertions are disabled.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49371 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-04-08 05:49:09 +00:00
parent 34437f35e9
commit 7098772436

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