From 709877243661b2b450402d4911de892af5c74f43 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 8 Apr 2008 05:49:09 +0000 Subject: silence warning when assertions are disabled. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49371 91177308-0d34-0410-b5e6-96231b3b80d8 --- examples/ParallelJIT/ParallelJIT.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/ParallelJIT') 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 @@ private: waitFor = 0; int result = pthread_cond_broadcast( &condition ); - assert( result == 0 ); + assert(result == 0); result=result; } size_t n; -- cgit v1.1