aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/Expr.cpp
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2010-04-23 21:02:34 +0000
committerAnders Carlsson <andersca@mac.com>2010-04-23 21:02:34 +0000
commita3bddeda81ca784bed5501d79e1e7c53befaa91d (patch)
tree4c66e0868d316d85c8cb0dfb8f7eefd988ba7353 /lib/AST/Expr.cpp
parent409c99edb8b623403fade6f3a9e9c86acda74455 (diff)
Destroy the inheritance path.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102211 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Expr.cpp')
-rw-r--r--lib/AST/Expr.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp
index 036d5ef680..370f33fbf3 100644
--- a/lib/AST/Expr.cpp
+++ b/lib/AST/Expr.cpp
@@ -652,6 +652,13 @@ const char *CastExpr::getCastKindName() const {
return 0;
}
+void CastExpr::DoDestroy(ASTContext &C)
+{
+ if (InheritancePath)
+ InheritancePath->Destroy();
+ Expr::DoDestroy(C);
+}
+
Expr *CastExpr::getSubExprAsWritten() {
Expr *SubExpr = 0;
CastExpr *E = this;