diff options
-rw-r--r-- | clang/lib/Analysis/CheckDeadStores.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/CheckDeadStores.cpp b/clang/lib/Analysis/CheckDeadStores.cpp index 4acacdf0ce9..f0d3dd1b623 100644 --- a/clang/lib/Analysis/CheckDeadStores.cpp +++ b/clang/lib/Analysis/CheckDeadStores.cpp @@ -57,7 +57,7 @@ public: break; case DeadIncrement: - BugType = "dead store (++/--)"; + BugType = "dead increment"; case Standard: if (!BugType) BugType = "dead store"; msg = "Value stored to '" + name + "' is never read"; |