diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2008-12-02 14:43:59 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2008-12-02 14:43:59 +0000 |
commit | 351bb78a10cbc4d7c5894366f16acebef7a038f2 (patch) | |
tree | e25cdf63c42ac39f2ff3e8e533066c77aa07be8b /clang/lib/Parse/ParseDecl.cpp | |
parent | 318ccb0e62ecd82d842d9b86a6b7dce31ecae21d (diff) | |
download | bcm5719-llvm-351bb78a10cbc4d7c5894366f16acebef7a038f2.tar.gz bcm5719-llvm-351bb78a10cbc4d7c5894366f16acebef7a038f2.zip |
Handle new by passing the Declaration to the Action, not a processed type.
llvm-svn: 60413
Diffstat (limited to 'clang/lib/Parse/ParseDecl.cpp')
-rw-r--r-- | clang/lib/Parse/ParseDecl.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/lib/Parse/ParseDecl.cpp b/clang/lib/Parse/ParseDecl.cpp index 192c70a192e..c3bbb52a13f 100644 --- a/clang/lib/Parse/ParseDecl.cpp +++ b/clang/lib/Parse/ParseDecl.cpp @@ -28,9 +28,7 @@ using namespace clang; /// specifier-qualifier-list abstract-declarator[opt] /// /// Called type-id in C++. -/// CXXNewMode is a special flag used by the parser of C++ new-expressions. It -/// is simply passed on to ActOnTypeName. -Parser::TypeTy *Parser::ParseTypeName(bool CXXNewMode) { +Parser::TypeTy *Parser::ParseTypeName() { // Parse the common declaration-specifiers piece. DeclSpec DS; ParseSpecifierQualifierList(DS); @@ -39,7 +37,7 @@ Parser::TypeTy *Parser::ParseTypeName(bool CXXNewMode) { Declarator DeclaratorInfo(DS, Declarator::TypeNameContext); ParseDeclarator(DeclaratorInfo); - return Actions.ActOnTypeName(CurScope, DeclaratorInfo, CXXNewMode).Val; + return Actions.ActOnTypeName(CurScope, DeclaratorInfo).Val; } /// ParseAttributes - Parse a non-empty attributes list. |