commit | 6d41b82ea4ba0cb9689824d5d38b441e92c773c4 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Tue Apr 15 05:31:00 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Tue Apr 15 05:31:00 2008 +0000 |
tree | d78e9b693fd5f60d7a116182c15afae53cb5903b | |
parent | 2ecc9d42f76e155bd6fe33794555627aecccc98d [diff] [blame] |
Improve dead store diagnostic. llvm-svn: 49711
diff --git a/clang/lib/Analysis/DeadStores.cpp b/clang/lib/Analysis/DeadStores.cpp index 62a4e3e..719b5eb 100644 --- a/clang/lib/Analysis/DeadStores.cpp +++ b/clang/lib/Analysis/DeadStores.cpp
@@ -166,7 +166,7 @@ } 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) {