forked from OSchip/llvm-project
silence warning when assertions are disabled.
llvm-svn: 49371
This commit is contained in:
parent
199abbcb26
commit
166c458df4
llvm/examples/ParallelJIT
|
@ -204,7 +204,7 @@ private:
|
|||
waitFor = 0;
|
||||
|
||||
int result = pthread_cond_broadcast( &condition );
|
||||
assert( result == 0 );
|
||||
assert(result == 0); result=result;
|
||||
}
|
||||
|
||||
size_t n;
|
||||
|
|
Loading…
Reference in New Issue