diff options
Diffstat (limited to 'clang/lib')
| -rw-r--r-- | clang/lib/AST/Stmt.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/lib/AST/Stmt.cpp b/clang/lib/AST/Stmt.cpp index 6ed99661355..b12518fa78c 100644 --- a/clang/lib/AST/Stmt.cpp +++ b/clang/lib/AST/Stmt.cpp @@ -55,6 +55,11 @@ void Stmt::Destroy(ASTContext& C) {    delete this;  } +void DeclStmt::Destroy(ASTContext& C) { +  TheDecl->Destroy(C); +  Stmt::Destroy(C); +} +  void Stmt::PrintStats() {    // Ensure the table is primed.    getStmtInfoTableEntry(Stmt::NullStmtClass);  | 

