diff options
author | Zachary Turner <zturner@google.com> | 2014-06-16 22:40:42 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2014-06-16 22:40:42 +0000 |
commit | 89ae856c46a7b83373c433031683936d3f153906 (patch) | |
tree | 8039dae504618acf1c5c20f784868e0cfe8dbec1 /llvm/lib/Support/Threading.cpp | |
parent | d4f7dfe7f2c9e73840e688c6de545ea98ebeb854 (diff) | |
download | bcm5719-llvm-89ae856c46a7b83373c433031683936d3f153906.tar.gz bcm5719-llvm-89ae856c46a7b83373c433031683936d3f153906.zip |
Kill the LLVM global lock.
llvm-svn: 211069
Diffstat (limited to 'llvm/lib/Support/Threading.cpp')
-rw-r--r-- | llvm/lib/Support/Threading.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Support/Threading.cpp b/llvm/lib/Support/Threading.cpp index ff591aaa1d8..838a71b789d 100644 --- a/llvm/lib/Support/Threading.cpp +++ b/llvm/lib/Support/Threading.cpp @@ -20,11 +20,6 @@ using namespace llvm; -sys::Mutex& llvm::llvm_get_global_lock() { - static sys::Mutex global_lock; - return global_lock; -} - bool llvm::llvm_is_multithreaded() { #if LLVM_ENABLE_THREADS != 0 return true; |