Change 'dead store (++/--)' to 'dead increment'


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54268 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/CheckDeadStores.cpp b/lib/Analysis/CheckDeadStores.cpp
index 4acacdf..f0d3dd1 100644
--- a/lib/Analysis/CheckDeadStores.cpp
+++ b/lib/Analysis/CheckDeadStores.cpp
@@ -57,7 +57,7 @@
         break;
         
       case DeadIncrement:
-        BugType = "dead store (++/--)";
+        BugType = "dead increment";
       case Standard:
         if (!BugType) BugType = "dead store";
         msg = "Value stored to '" + name + "' is never read";