]> granicus.if.org Git - clang/commitdiff
Make messages consistent.
authorChris Lattner <sabre@nondot.org>
Fri, 10 Apr 2009 00:37:08 +0000 (00:37 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 10 Apr 2009 00:37:08 +0000 (00:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68756 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGDecl.cpp

index 00eb8b477bad657bf9050cc7bab67359031ce96d..2060b5c449d2a62fe4c4e808964f75689297c7b1 100644 (file)
@@ -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: