[llvm] r227412 - [LPM] Fix an "obvious" typo from r227411. Really sorry for the noise.

Chandler Carruth chandlerc at gmail.com
Wed Jan 28 17:29:23 PST 2015


Author: chandlerc
Date: Wed Jan 28 19:29:22 2015
New Revision: 227412

URL: http://llvm.org/viewvc/llvm-project?rev=227412&view=rev
Log:
[LPM] Fix an "obvious" typo from r227411. Really sorry for the noise.
Too many cases to compile everything quickly.

Modified:
    llvm/trunk/include/llvm/Support/Compiler.h

Modified: llvm/trunk/include/llvm/Support/Compiler.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Compiler.h?rev=227412&r1=227411&r2=227412&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Compiler.h (original)
+++ llvm/trunk/include/llvm/Support/Compiler.h Wed Jan 28 19:29:22 2015
@@ -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





More information about the llvm-commits mailing list