aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/CodeGen/CGDecl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGDecl.cpp b/lib/CodeGen/CGDecl.cpp
index 00eb8b477b..2060b5c449 100644
--- a/lib/CodeGen/CGDecl.cpp
+++ b/lib/CodeGen/CGDecl.cpp
@@ -65,7 +65,7 @@ void CodeGenFunction::EmitBlockVarDecl(const VarDecl &D) {
// We don't support __thread yet.
if (D.isThreadSpecified())
- CGM.ErrorUnsupported(&D, "__thread variable", true);
+ CGM.ErrorUnsupported(&D, "thread local ('__thread') variable", true);
switch (D.getStorageClass()) {
case VarDecl::Static: