diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-15 05:31:00 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-15 05:31:00 +0000 |
commit | 1d5d1da8c3cb3e697d21d05e6dc7f08df8814a2c (patch) | |
tree | 26e19653606c02dfe238f2871baf28ad32726b1e | |
parent | 42e7fe5685de54c18d1c466632dacacabde0b202 (diff) |
Improve dead store diagnostic.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49711 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Analysis/DeadStores.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DeadStores.cpp b/lib/Analysis/DeadStores.cpp index 62a4e3e71e..719b5eb6c0 100644 --- a/lib/Analysis/DeadStores.cpp +++ b/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) { |