diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-18 07:36:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-18 07:36:39 +0000 |
commit | ab09436eb9dafc96ff84d75b87709ac230d140ca (patch) | |
tree | eab1dda21ce68f14b53cc688e23fd59f470b6e2f /lib/Sema/Sema.h | |
parent | f29c8ad917e5fdc8fdd3d43707073be217bad625 (diff) |
make scope checking be static functions instead of sema methods.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69429 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/Sema.h')
-rw-r--r-- | lib/Sema/Sema.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h index ef20a6a330..20bea4ca0f 100644 --- a/lib/Sema/Sema.h +++ b/lib/Sema/Sema.h @@ -492,18 +492,6 @@ public: } - void RecursiveCalcJumpScopes(llvm::DenseMap<Stmt*, void*>& LabelScopeMap, - llvm::DenseMap<void*, Stmt*>& PopScopeMap, - llvm::DenseMap<Stmt*, void*>& GotoScopeMap, - std::vector<void*>& ScopeStack, - Stmt* CurStmt); - - void RecursiveCalcLabelScopes(llvm::DenseMap<Stmt*, void*>& LabelScopeMap, - llvm::DenseMap<void*, Stmt*>& PopScopeMap, - std::vector<void*>& ScopeStack, - Stmt* CurStmt, - Stmt* ParentCompoundStmt); - /// Subroutines of ActOnDeclarator(). TypedefDecl *ParseTypedefDecl(Scope *S, Declarator &D, QualType T); bool MergeTypeDefDecl(TypedefDecl *New, Decl *Old); |