summaryrefslogtreecommitdiffstats
path: root/clang/lib/Analysis/BugReporter.cpp
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2009-09-05 06:06:49 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2009-09-05 06:06:49 +0000
commitd7674a47f948fc2ce62206da33862383f3b811a2 (patch)
tree9f1dc2bccc116fc3fe94b948ecc352497d572894 /clang/lib/Analysis/BugReporter.cpp
parentdc6d2c3cda2472cd4b6172bdc07bcc2adc504e5d (diff)
downloadbcm5719-llvm-d7674a47f948fc2ce62206da33862383f3b811a2.tar.gz
bcm5719-llvm-d7674a47f948fc2ce62206da33862383f3b811a2.zip
Do not call FlushReports() in GRBugReporter's dtor. We already call it in
ActionGRExprEngine(). llvm-svn: 81064
Diffstat (limited to 'clang/lib/Analysis/BugReporter.cpp')
-rw-r--r--clang/lib/Analysis/BugReporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/BugReporter.cpp b/clang/lib/Analysis/BugReporter.cpp
index feffd45d9cd..e54a50078e9 100644
--- a/clang/lib/Analysis/BugReporter.cpp
+++ b/clang/lib/Analysis/BugReporter.cpp
@@ -1293,7 +1293,7 @@ BugReportEquivClass::~BugReportEquivClass() {
for (iterator I=begin(), E=end(); I!=E; ++I) delete *I;
}
-GRBugReporter::~GRBugReporter() { FlushReports(); }
+GRBugReporter::~GRBugReporter() { }
BugReporterData::~BugReporterData() {}
ExplodedGraph &GRBugReporter::getGraph() { return Eng.getGraph(); }
OpenPOWER on IntegriCloud