diff options
author | John McCall <rjmccall@apple.com> | 2010-09-03 02:10:08 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-09-03 02:10:08 +0000 |
commit | 96326e447cfc8d2ef6c40be732dfad947abf907d (patch) | |
tree | c399fbf4dac747b2820958018a4d37faf680bbfe /clang/lib/Sema/Sema.cpp | |
parent | d6634a5b2e5626096a01180b6228666184b26ccb (diff) | |
download | bcm5719-llvm-96326e447cfc8d2ef6c40be732dfad947abf907d.tar.gz bcm5719-llvm-96326e447cfc8d2ef6c40be732dfad947abf907d.zip |
Devirtualize Sema, kill off DeleteExpr and DeleteStmt, and reformat.
llvm-svn: 112945
Diffstat (limited to 'clang/lib/Sema/Sema.cpp')
-rw-r--r-- | clang/lib/Sema/Sema.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/clang/lib/Sema/Sema.cpp b/clang/lib/Sema/Sema.cpp index 60e308a9824..17817d41691 100644 --- a/clang/lib/Sema/Sema.cpp +++ b/clang/lib/Sema/Sema.cpp @@ -239,11 +239,6 @@ ExprValueKind Sema::CastCategory(Expr *E) { (Classification.isLValue() ? VK_LValue : VK_XValue); } -void Sema::DeleteExpr(ExprTy *E) { -} -void Sema::DeleteStmt(StmtTy *S) { -} - /// \brief Used to prune the decls of Sema's UnusedFileScopedDecls vector. static bool ShouldRemoveFromUnused(Sema *SemaRef, const DeclaratorDecl *D) { if (D->isUsed()) |