浏览代码

Improve dead store diagnostic.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49711 91177308-0d34-0410-b5e6-96231b3b80d8
Ted Kremenek 17 年之前
父节点
当前提交
1d5d1da8c3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/Analysis/DeadStores.cpp

+ 1 - 1
lib/Analysis/DeadStores.cpp

@@ -166,7 +166,7 @@ public:
   }
   
   virtual const char* getDescription() const {
-    return "Value stored to variable is never used.";
+    return "Value stored to variable is never subsequently read.";
   }
   
   virtual void EmitWarnings(BugReporter& BR) {