summaryrefslogtreecommitdiffstats
path: root/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2014-03-20 18:47:47 +0000
committerTed Kremenek <kremenek@apple.com>2014-03-20 18:47:47 +0000
commit03a3d74ff25d662b0cf775bab5cdd87ba22e5ad6 (patch)
tree5878f4d9aa6d0904c03f7fb4dedc5bd9394b97b0 /clang/lib/StaticAnalyzer/Core/BugReporter.cpp
parent9cee5e0e92e34348ca9a798c81b51a3497154e3f (diff)
downloadbcm5719-llvm-03a3d74ff25d662b0cf775bab5cdd87ba22e5ad6.tar.gz
bcm5719-llvm-03a3d74ff25d662b0cf775bab5cdd87ba22e5ad6.zip
[analyzer] Fix a bad bug in reversePropagateInterstingSymbols() where only one subexpression of BinaryOperator would be explored.
llvm-svn: 204374
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/BugReporter.cpp')
-rw-r--r--clang/lib/StaticAnalyzer/Core/BugReporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/BugReporter.cpp b/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
index 1784b4fc582..a08a2269c9d 100644
--- a/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
+++ b/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
@@ -1263,8 +1263,8 @@ static void reversePropagateIntererstingSymbols(BugReport &R,
SVal ChildV = State->getSVal(child, LCtx);
R.markInteresting(ChildV);
}
- break;
}
+ break;
}
}
OpenPOWER on IntegriCloud