aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/Sema.cpp
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2010-09-03 02:10:08 +0000
committerJohn McCall <rjmccall@apple.com>2010-09-03 02:10:08 +0000
commit8c465e6494d16a19127873dc9bdc55177ac6b6fd (patch)
tree42f1593da6c9d9347b61ba516dfeaf0294f4cc67 /lib/Sema/Sema.cpp
parentdb50547fd526329d00fa1fee4e7ac90f2624c6e0 (diff)
Devirtualize Sema, kill off DeleteExpr and DeleteStmt, and reformat.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112945 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/Sema.cpp')
-rw-r--r--lib/Sema/Sema.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Sema/Sema.cpp b/lib/Sema/Sema.cpp
index 60e308a982..17817d4169 100644
--- a/lib/Sema/Sema.cpp
+++ b/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())