diff options
-rw-r--r-- | clang/lib/AST/Stmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/Stmt.cpp b/clang/lib/AST/Stmt.cpp index 26121e24855..ce97387ee36 100644 --- a/clang/lib/AST/Stmt.cpp +++ b/clang/lib/AST/Stmt.cpp @@ -474,7 +474,7 @@ void AsmStmt::DoDestroy(ASTContext &C) { C.Deallocate(Exprs); C.Deallocate(Clobbers); - this->~Stmt(); + this->~AsmStmt(); C.Deallocate((void *)this); } |