diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-06 21:24:37 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-06 21:24:37 +0000 |
commit | 2370b4d81f0ada950816a2c2dd859057a86871c8 (patch) | |
tree | 1ab4d6984ffef55883d04fa3fd1ff4f940e6e6f1 /llvm/lib/System/Threading.cpp | |
parent | 9848b557c825687af209c65779c50d751eeac43e (diff) | |
download | bcm5719-llvm-2370b4d81f0ada950816a2c2dd859057a86871c8.tar.gz bcm5719-llvm-2370b4d81f0ada950816a2c2dd859057a86871c8.zip |
No need to double-include config.h
llvm-svn: 74854
Diffstat (limited to 'llvm/lib/System/Threading.cpp')
-rw-r--r-- | llvm/lib/System/Threading.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/System/Threading.cpp b/llvm/lib/System/Threading.cpp index bc41afee66b..466c4680264 100644 --- a/llvm/lib/System/Threading.cpp +++ b/llvm/lib/System/Threading.cpp @@ -11,12 +11,12 @@ // //===----------------------------------------------------------------------===// -#include "llvm/Config/config.h" #include "llvm/System/Threading.h" #include "llvm/System/Atomic.h" #include "llvm/System/Mutex.h" #include "llvm/Config/config.h" #include <cassert> + using namespace llvm; static bool multithreaded_mode = false; |