commit | bc610fcd224a41520f840c5d55d592a6c55c2633 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Apr 08 05:49:09 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Apr 08 05:49:09 2008 +0000 |
tree | 2e1e2c8340898357a0d9c9d3029bf79b47f7e05e | |
parent | 97b746a24d298dc5b5c87f863a48ec4fade0acb4 [diff] [blame] |
silence warning when assertions are disabled. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49371 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/examples/ParallelJIT/ParallelJIT.cpp b/examples/ParallelJIT/ParallelJIT.cpp index 300c432..634bffa 100644 --- a/examples/ParallelJIT/ParallelJIT.cpp +++ b/examples/ParallelJIT/ParallelJIT.cpp
@@ -204,7 +204,7 @@ waitFor = 0; int result = pthread_cond_broadcast( &condition ); - assert( result == 0 ); + assert(result == 0); result=result; } size_t n;