diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-10 00:37:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-10 00:37:08 +0000 |
commit | 11c7d32ac2f8a784a3cc4714a9f1977ab5859185 (patch) | |
tree | 3e97f9116e4b4848ff6b09672dbc5ba0a0df2bb4 /lib/CodeGen/CGDecl.cpp | |
parent | b75863d53b8a2bbf0ece8e6df2b6e5be7f3896c4 (diff) |
Make messages consistent.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68756 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDecl.cpp')
-rw-r--r-- | lib/CodeGen/CGDecl.cpp | 2 |
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: |