aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/Stmt.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2010-01-31 09:01:55 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2010-01-31 09:01:55 +0000
commita05315436746963c4034555ca725956507e14553 (patch)
tree44fd8786f4f65e33b838693e467931efbf6ccd12 /lib/AST/Stmt.cpp
parentb7de181d912690958e82c01f1b3d752d3d4ab43b (diff)
Try to unbreak MSVC build.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94951 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Stmt.cpp')
-rw-r--r--lib/AST/Stmt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/Stmt.cpp b/lib/AST/Stmt.cpp
index 26121e2485..ce97387ee3 100644
--- a/lib/AST/Stmt.cpp
+++ b/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);
}