diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-01-29 01:29:22 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-01-29 01:29:22 +0000 |
commit | 76797c935b5fe7c76d56beb5b35cea2ab0f6727c (patch) | |
tree | 554314dcde4cb8bdbb1f9791d24c9e8dc3dadbea | |
parent | fb3139ad9e812779e9ad24238b53bbffc6b7d8ba (diff) | |
download | bcm5719-llvm-76797c935b5fe7c76d56beb5b35cea2ab0f6727c.tar.gz bcm5719-llvm-76797c935b5fe7c76d56beb5b35cea2ab0f6727c.zip |
[LPM] Fix an "obvious" typo from r227411. Really sorry for the noise.
Too many cases to compile everything quickly.
llvm-svn: 227412
-rw-r--r-- | llvm/include/llvm/Support/Compiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/Compiler.h b/llvm/include/llvm/Support/Compiler.h index 1f230c2c391..c3c416f7d9b 100644 --- a/llvm/include/llvm/Support/Compiler.h +++ b/llvm/include/llvm/Support/Compiler.h @@ -399,7 +399,7 @@ // FIXME: Make this conditional on the Clang version once this is fixed in // top-of-tree. #define LLVM_THREAD_LOCAL __thread __attribute__((tls_model("global-dynamic"))) -#elif +#else #define LLVM_THREAD_LOCAL __thread #endif #else // !LLVM_ENABLE_THREADS |