aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/GRExprEngineInternalChecks.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-09-24 00:44:26 +0000
committerTed Kremenek <kremenek@apple.com>2009-09-24 00:44:26 +0000
commit112ba7e57e23c2310479fd6bb116d9570fc2b77d (patch)
tree02dcdc37a665a7230c6065d835aef8d4412c6244 /lib/Analysis/GRExprEngineInternalChecks.cpp
parent7ad2d562e8423f71143c33d63e11ce77b2117643 (diff)
Shorten the static analyzer diagnostic for 'use of garbage value'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82672 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngineInternalChecks.cpp')
-rw-r--r--lib/Analysis/GRExprEngineInternalChecks.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/GRExprEngineInternalChecks.cpp b/lib/Analysis/GRExprEngineInternalChecks.cpp
index 2eb5589117..cc1ec4b77e 100644
--- a/lib/Analysis/GRExprEngineInternalChecks.cpp
+++ b/lib/Analysis/GRExprEngineInternalChecks.cpp
@@ -235,9 +235,9 @@ public:
if (Ex) {
OS << "The " << (isLeft ? "left" : "right")
- << " operand of the '"
+ << " operand of '"
<< BinaryOperator::getOpcodeStr(B->getOpcode())
- << "' expression is a garbage value";
+ << "' is a garbage value";
}
else {
// Neither operand was undefined, but the result is undefined.