diff options
author | Anna Zaks <ganna@apple.com> | 2013-04-05 23:50:14 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2013-04-05 23:50:14 +0000 |
commit | ea7b481aa8298f1e59c4cfb64e53b38f86dec92d (patch) | |
tree | 1588b61eecc8a77133f7dd95716c99635f104daf | |
parent | 4b69feb6d90eb120d04f5d54f6b28cc295a46098 (diff) |
[analyzer] Remove another redundancy from trackNullOrUndef
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178934 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp b/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp index 536064e1ad..4ffdc6afa4 100644 --- a/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp +++ b/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp @@ -932,12 +932,6 @@ bool bugreporter::trackNullOrUndefValue(const ExplodedNode *N, report.markInteresting(V); report.addVisitor(new UndefOrNullArgVisitor(R)); - if (isa<SymbolicRegion>(R)) { - TrackConstraintBRVisitor *VI = - new TrackConstraintBRVisitor(loc::MemRegionVal(R), false); - report.addVisitor(VI); - } - // If the contents are symbolic, find out when they became null. if (V.getAsLocSymbol()) { BugReporterVisitor *ConstraintTracker = |