minor cleanup, remove finalize method.

llvm-svn: 55216
This commit is contained in:
Chris Lattner 2008-08-23 02:00:52 +00:00
parent 2ebb178f8b
commit 2cc35ae286
4 changed files with 7 additions and 18 deletions

View File

@ -85,10 +85,6 @@ public:
/// the EOF was encountered.
bool ParseTopLevelDecl(DeclTy*& Result);
/// Finalize - Shut down the parser.
///
void Finalize();
private:
//===--------------------------------------------------------------------===//
// Low-Level token peeking and consumption methods.

View File

@ -281,13 +281,6 @@ bool Parser::ParseTopLevelDecl(DeclTy*& Result) {
return false;
}
/// Finalize - Shut down the parser.
///
void Parser::Finalize() {
ExitScope();
assert(CurScope == 0 && "Scope imbalance!");
}
/// ParseTranslationUnit:
/// translation-unit: [C99 6.9]
/// external-declaration
@ -298,8 +291,9 @@ void Parser::ParseTranslationUnit() {
DeclTy *Res;
while (!ParseTopLevelDecl(Res))
/*parse them all*/;
Finalize();
ExitScope();
assert(CurScope == 0 && "Scope imbalance!");
}
/// ParseExternalDeclaration:

View File

@ -122,8 +122,6 @@ void Sema::ImpCastExprToType(Expr *&Expr, QualType Type) {
Expr = new ImplicitCastExpr(Type, Expr);
}
void Sema::DeleteExpr(ExprTy *E) {
delete static_cast<Expr*>(E);
}

View File

@ -136,7 +136,7 @@ public:
/// of known functions used by the semantic analysis to do various
/// kinds of checking (e.g. checking format string errors in printf calls).
/// This list is populated upon the creation of a Sema object.
IdentifierInfo* KnownFunctionIDs[ id_num_known_functions ];
IdentifierInfo* KnownFunctionIDs[id_num_known_functions];
/// SuperID - Identifier for "super" used for Objective-C checking.
IdentifierInfo* SuperID;
@ -243,8 +243,9 @@ private:
virtual DeclTy *ActOnTag(Scope *S, unsigned TagType, TagKind TK,
SourceLocation KWLoc, IdentifierInfo *Name,
SourceLocation NameLoc, AttributeList *Attr);
virtual void ActOnDefs(Scope *S, SourceLocation DeclStart, IdentifierInfo
*ClassName, llvm::SmallVectorImpl<DeclTy*> &Decls);
virtual void ActOnDefs(Scope *S, SourceLocation DeclStart,
IdentifierInfo *ClassName,
llvm::SmallVectorImpl<DeclTy*> &Decls);
virtual DeclTy *ActOnField(Scope *S, SourceLocation DeclStart,
Declarator &D, ExprTy *BitfieldWidth);