diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-12-20 22:00:25 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-12-20 22:00:25 +0000 |
commit | 6ae325737c2ef7ce60ac6650a96bd489ef6e7ebe (patch) | |
tree | c0a2aeafe69b48b6cb9feeb60208424245996f84 /lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | |
parent | c7feca0392f7a55e1efa56fd1579881cd59d03d3 (diff) |
Fix inversion of static analyzer path diagnostics for path conditions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146993 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/BugReporterVisitors.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp b/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp index 1abd8baef6..6828a9e159 100644 --- a/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp +++ b/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp @@ -637,7 +637,7 @@ ConditionBRVisitor::VisitTrueTest(const Expr *Cond, return 0; } - switch (BExpr->getOpcode()) { + switch (Op) { case BO_EQ: Out << "equal to "; break; |