commit | ba6eb4291ee093ec2566a0fd60552695fb426fd9 | [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 | 26e19653606c02dfe238f2871baf28ad32726b1e | |
parent | ec14906f8644cf07c5b462c4b8dd5eba4e401128 [diff] [blame] |
Improve dead store diagnostic. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49711 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/DeadStores.cpp b/lib/Analysis/DeadStores.cpp index 62a4e3e..719b5eb 100644 --- a/lib/Analysis/DeadStores.cpp +++ b/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) {