summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-02-20 00:02:49 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-02-20 00:02:49 +0000
commit637f949a7fc97aa42e7360e9ed9462316b772d88 (patch)
treed3e71be936b9ce7ddda493a153d6595bc9f6c2f7 /examples
parentcceb8f44a0ca3a9c57ab3a7f4947b2abda531cef (diff)
downloadllvm-637f949a7fc97aa42e7360e9ed9462316b772d88.tar.gz
llvm-637f949a7fc97aa42e7360e9ed9462316b772d88.tar.bz2
llvm-637f949a7fc97aa42e7360e9ed9462316b772d88.tar.xz
Switch to a more idiomatic way of silencing unused variable warnings in
release builds. Silences clang's -Wself-assign. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150942 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/ParallelJIT/ParallelJIT.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/ParallelJIT/ParallelJIT.cpp b/examples/ParallelJIT/ParallelJIT.cpp
index 3e483275ed..305cf1dde0 100644
--- a/examples/ParallelJIT/ParallelJIT.cpp
+++ b/examples/ParallelJIT/ParallelJIT.cpp
@@ -209,7 +209,8 @@ private:
waitFor = 0;
int result = pthread_cond_broadcast( &condition );
- assert(result == 0); result=result;
+ (void)result;
+ assert(result == 0);
}
size_t n;