summaryrefslogtreecommitdiffstats
path: root/clang/lib/Parse/ParseObjc.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2012-09-17 23:09:59 +0000
committerFariborz Jahanian <fjahanian@apple.com>2012-09-17 23:09:59 +0000
commit84f4984331161f86b8c2c28869a08e83dd3478b0 (patch)
tree8aea8bb21f6db25cbc6743104f159ba5773a11e9 /clang/lib/Parse/ParseObjc.cpp
parentce48ea7e255ae343d8186fbeed397cf6961e2d5a (diff)
downloadbcm5719-llvm-84f4984331161f86b8c2c28869a08e83dd3478b0.tar.gz
bcm5719-llvm-84f4984331161f86b8c2c28869a08e83dd3478b0.zip
objective-C: improve on warnings about misplacement of method
argument names. // rdar://12263549 llvm-svn: 164077
Diffstat (limited to 'clang/lib/Parse/ParseObjc.cpp')
-rw-r--r--clang/lib/Parse/ParseObjc.cpp24
1 files changed, 4 insertions, 20 deletions
diff --git a/clang/lib/Parse/ParseObjc.cpp b/clang/lib/Parse/ParseObjc.cpp
index 48c5efac6ba..d321baf836b 100644
--- a/clang/lib/Parse/ParseObjc.cpp
+++ b/clang/lib/Parse/ParseObjc.cpp
@@ -1032,7 +1032,6 @@ Decl *Parser::ParseObjCMethodDecl(SourceLocation mLoc,
Scope::FunctionPrototypeScope|Scope::DeclScope);
AttributePool allParamAttrs(AttrFactory);
- bool warnSelectorName = false;
while (1) {
ParsedAttributes paramAttrs(AttrFactory);
Sema::ObjCArgInfo ArgInfo;
@@ -1103,11 +1102,12 @@ Decl *Parser::ParseObjCMethodDecl(SourceLocation mLoc,
SelIdent = ParseObjCSelectorPiece(selLoc);
if (!SelIdent && Tok.isNot(tok::colon))
break;
- if (MethodDefinition && !SelIdent) {
+ if (!SelIdent) {
SourceLocation ColonLoc = Tok.getLocation();
if (PP.getLocForEndOfToken(ArgInfo.NameLoc) == ColonLoc) {
- warnSelectorName = true;
- Diag(ArgInfo.NameLoc, diag::missing_selector_name);
+ Diag(ArgInfo.NameLoc, diag::warn_missing_selector_name) << ArgInfo.Name;
+ Diag(ArgInfo.NameLoc, diag::note_missing_selector_name) << ArgInfo.Name;
+ Diag(ColonLoc, diag::note_force_empty_selector_name) << ArgInfo.Name;
}
}
// We have a selector or a colon, continue parsing.
@@ -1150,22 +1150,6 @@ Decl *Parser::ParseObjCMethodDecl(SourceLocation mLoc,
Selector Sel = PP.getSelectorTable().getSelector(KeyIdents.size(),
&KeyIdents[0]);
- if (warnSelectorName) {
- SmallVector<IdentifierInfo *, 12> DiagKeyIdents;
- for (unsigned i = 0, size = KeyIdents.size(); i < size; i++)
- if (KeyIdents[i])
- DiagKeyIdents.push_back(KeyIdents[i]);
- else {
- std::string name = "Name";
- name += llvm::utostr(i+1);
- IdentifierInfo *NamedMissingId = &PP.getIdentifierTable().get(name);
- DiagKeyIdents.push_back(NamedMissingId);
- }
- Selector NewSel =
- PP.getSelectorTable().getSelector(DiagKeyIdents.size(), &DiagKeyIdents[0]);
- Diag(mLoc, diag::note_missing_argument_name)
- << NewSel.getAsString() << Sel.getAsString();
- }
Decl *Result
= Actions.ActOnMethodDeclaration(getCurScope(), mLoc, Tok.getLocation(),
mType, DSRet, ReturnType,
OpenPOWER on IntegriCloud