diff options
| author | Peter Collingbourne <peter@pcc.me.uk> | 2015-08-18 22:31:24 +0000 |
|---|---|---|
| committer | Peter Collingbourne <peter@pcc.me.uk> | 2015-08-18 22:31:24 +0000 |
| commit | 4cfa086df275f673591c356dda5c0f3c6b114127 (patch) | |
| tree | b17dbfd986c2d63fa9cf0d35b60495f528bf5b60 /llvm/lib/Support/ManagedStatic.cpp | |
| parent | 2ad6ac546177204bdb224c614619fc5ca0181a35 (diff) | |
| download | bcm5719-llvm-4cfa086df275f673591c356dda5c0f3c6b114127.tar.gz bcm5719-llvm-4cfa086df275f673591c356dda5c0f3c6b114127.zip | |
Support: Clean up TSan annotations.
Remove support for Valgrind-based TSan, which hasn't been maintained for a
few years. We now use the TSan annotations only if LLVM is compiled with
-fsanitize=thread. We no longer need the weak function definitions as we
are guaranteed that our program is linked directly with the TSan runtime.
Differential Revision: http://reviews.llvm.org/D12121
llvm-svn: 245374
Diffstat (limited to 'llvm/lib/Support/ManagedStatic.cpp')
| -rw-r--r-- | llvm/lib/Support/ManagedStatic.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/ManagedStatic.cpp b/llvm/lib/Support/ManagedStatic.cpp index b8fb2841e52..9868207b14f 100644 --- a/llvm/lib/Support/ManagedStatic.cpp +++ b/llvm/lib/Support/ManagedStatic.cpp @@ -14,6 +14,7 @@ #include "llvm/Support/ManagedStatic.h" #include "llvm/Config/config.h" #include "llvm/Support/Atomic.h" +#include "llvm/Support/Compiler.h" #include "llvm/Support/Mutex.h" #include "llvm/Support/MutexGuard.h" #include <cassert> |

