Shorten the static analyzer diagnostic for 'use of garbage value'.
llvm-svn: 82672
diff --git a/clang/lib/Analysis/GRExprEngineInternalChecks.cpp b/clang/lib/Analysis/GRExprEngineInternalChecks.cpp
index 2eb5589..cc1ec4b 100644
--- a/clang/lib/Analysis/GRExprEngineInternalChecks.cpp
+++ b/clang/lib/Analysis/GRExprEngineInternalChecks.cpp
@@ -235,9 +235,9 @@
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.