diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-09-05 06:06:49 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-09-05 06:06:49 +0000 |
commit | a2f4ec0df645fc249d2945beef9653f03b175417 (patch) | |
tree | 8a5df44b07c0509416680ee75f284d913d2e6605 /lib/Analysis/BugReporter.cpp | |
parent | 6bc107b49862418bf3f64f74f17e472b4c13aa71 (diff) |
Do not call FlushReports() in GRBugReporter's dtor. We already call it in
ActionGRExprEngine().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@81064 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/BugReporter.cpp')
-rw-r--r-- | lib/Analysis/BugReporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/BugReporter.cpp b/lib/Analysis/BugReporter.cpp index feffd45d9c..e54a50078e 100644 --- a/lib/Analysis/BugReporter.cpp +++ b/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(); } |