diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-06-30 15:47:41 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-06-30 15:47:41 +0000 |
commit | 751f9a416a94fe723e6c34fc15fff2ccdf1c4be9 (patch) | |
tree | 7a1f048f5351a034932de0b7ec8a24559a6f3b28 /lib/Sema/Sema.h | |
parent | ce2f9bd2bc7dd4e070d46114b6a921127bd1ca86 (diff) |
Refactor ActOnDeclarationNameExpr into a "parsing action" part and a
"semantic analysis" part. Use the "semantic analysis" part when
performing template instantiation on a DeclRefExpr, rather than an ad
hoc list of rules to construct DeclRefExprs from the instantiation.
A test case for this change will come in with a large commit, which
illustrates what I was actually trying to work on.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74528 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/Sema.h')
-rw-r--r-- | lib/Sema/Sema.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h index 0fa66c4937..42c43291a9 100644 --- a/lib/Sema/Sema.h +++ b/lib/Sema/Sema.h @@ -1401,7 +1401,11 @@ public: bool HasTrailingLParen, const CXXScopeSpec *SS, bool isAddressOfOperand = false); - + OwningExprResult BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D, + bool HasTrailingLParen, + const CXXScopeSpec *SS, + bool isAddressOfOperand); + virtual OwningExprResult ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind); virtual OwningExprResult ActOnNumericConstant(const Token &); |