diff options
| author | Ted Kremenek <kremenek@apple.com> | 2009-09-24 00:44:26 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2009-09-24 00:44:26 +0000 |
| commit | d9120d35750e94c3bf5209fb04fa1bcd918426bb (patch) | |
| tree | 01d1c90219964b69da42255e742214c929f137d3 /clang/lib/Analysis/GRExprEngineInternalChecks.cpp | |
| parent | 20327b04229afa9a252219e53f5415ee312b4a6a (diff) | |
| download | bcm5719-llvm-d9120d35750e94c3bf5209fb04fa1bcd918426bb.tar.gz bcm5719-llvm-d9120d35750e94c3bf5209fb04fa1bcd918426bb.zip | |
Shorten the static analyzer diagnostic for 'use of garbage value'.
llvm-svn: 82672
Diffstat (limited to 'clang/lib/Analysis/GRExprEngineInternalChecks.cpp')
| -rw-r--r-- | clang/lib/Analysis/GRExprEngineInternalChecks.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Analysis/GRExprEngineInternalChecks.cpp b/clang/lib/Analysis/GRExprEngineInternalChecks.cpp index 2eb5589117f..cc1ec4b77e4 100644 --- a/clang/lib/Analysis/GRExprEngineInternalChecks.cpp +++ b/clang/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. |

