diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-08-05 16:28:08 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-08-05 16:28:08 +0000 |
commit | 1ff1d1fd51cacce062a3f6dd3c787eefadab08cb (patch) | |
tree | e3d401d6f56ae0f1afffb5b4437ef4a1011fbb39 /clang/lib/Parse/MinimalAction.cpp | |
parent | eca183bad2b53c5aae0d1393ec3fe796867bf87e (diff) | |
download | bcm5719-llvm-1ff1d1fd51cacce062a3f6dd3c787eefadab08cb.tar.gz bcm5719-llvm-1ff1d1fd51cacce062a3f6dd3c787eefadab08cb.zip |
Move AsmLabel into Declarator instead of just a parameter to
ActOnDeclarator.
llvm-svn: 54353
Diffstat (limited to 'clang/lib/Parse/MinimalAction.cpp')
-rw-r--r-- | clang/lib/Parse/MinimalAction.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/Parse/MinimalAction.cpp b/clang/lib/Parse/MinimalAction.cpp index 352925535dd..cb130c3d268 100644 --- a/clang/lib/Parse/MinimalAction.cpp +++ b/clang/lib/Parse/MinimalAction.cpp @@ -63,8 +63,7 @@ MinimalAction::isTypeName(const IdentifierInfo &II, Scope *S) { /// IdentifierInfo::FETokenInfo field to keep track of this fact, until S is /// popped. Action::DeclTy * -MinimalAction::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *LastInGroup, - ExprTy *AsmLabel) { +MinimalAction::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *LastInGroup) { IdentifierInfo *II = D.getIdentifier(); // If there is no identifier associated with this declarator, bail out. |