From: Ted Kremenek Date: Sat, 28 Aug 2010 18:59:04 +0000 (+0000) Subject: Delete the relaxedLiveness object in the dtor of AnalysisContext. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91c83e76d8ad42d1fd8e249b72a36d552997f77c;p=clang Delete the relaxedLiveness object in the dtor of AnalysisContext. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112380 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/AnalysisContext.cpp b/lib/Analysis/AnalysisContext.cpp index 884cbc65f4..bf9f967190 100644 --- a/lib/Analysis/AnalysisContext.cpp +++ b/lib/Analysis/AnalysisContext.cpp @@ -334,6 +334,7 @@ AnalysisContext::~AnalysisContext() { delete cfg; delete completeCFG; delete liveness; + delete relaxedLiveness; delete PM; delete PCA; delete ReferencedBlockVars;