Hi, there is LLVM_MULTITHREADED define which is actually indicates presence of atomic builtins in the host system. Such name may confuse developers in future and already confused someone at lib/Support/Threading.cpp - he used this define to check whether LLVM is built with threading support. This mistake is currently blocking single-threaded build on Unix.<br>

<br>This patch do following things:<br>1. Rename LLVM_MULTITHREADED to LLVM_HAVE_ATOMICS in CMake checking code and <a href="http://configure.ac">configure.ac</a>, fix description of this option.<br>2. Replaces all uses of old define with new one.<br>

3. Fix lib/Support/Threading.cpp file by using ENABLE_THREADS define instead of LLVM_MULTITHREADED.<br>