diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-01-31 09:01:55 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-01-31 09:01:55 +0000 |
commit | 43a645cd93658db50bf925c491ada7aa9daba2d3 (patch) | |
tree | 94d98de6dde4dea5b475c25ec36b93bd1292135d | |
parent | b33dbc5019948e6564657e01d594965394331cfe (diff) | |
download | bcm5719-llvm-43a645cd93658db50bf925c491ada7aa9daba2d3.tar.gz bcm5719-llvm-43a645cd93658db50bf925c491ada7aa9daba2d3.zip |
Try to unbreak MSVC build.
llvm-svn: 94951
-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); } |