diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2014-10-28 18:28:16 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2014-10-28 18:28:16 +0000 |
commit | 9ad94aa280619feaed083fd35f9a50c7e076a7b0 (patch) | |
tree | d395d7e34bf528c7cc3c44da0d5e75d52cde3485 /clang/lib/AST/NSAPI.cpp | |
parent | d178ada55ea4cc5d71443ec27495092fbb72b230 (diff) | |
download | bcm5719-llvm-9ad94aa280619feaed083fd35f9a50c7e076a7b0.tar.gz bcm5719-llvm-9ad94aa280619feaed083fd35f9a50c7e076a7b0.zip |
Objective-C. revert patch for rdar://17554063.
llvm-svn: 220812
Diffstat (limited to 'clang/lib/AST/NSAPI.cpp')
-rw-r--r-- | clang/lib/AST/NSAPI.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/clang/lib/AST/NSAPI.cpp b/clang/lib/AST/NSAPI.cpp index aac31e7f15c..3dc750a8178 100644 --- a/clang/lib/AST/NSAPI.cpp +++ b/clang/lib/AST/NSAPI.cpp @@ -124,14 +124,6 @@ Selector NSAPI::getNSArraySelector(NSArrayMethodKind MK) const { Sel = Ctx.Selectors.getSelector(2, KeyIdents); break; } - case NSArr_initWithObjectsCount: { - IdentifierInfo *KeyIdents[] = { - &Ctx.Idents.get("initWithObjects"), - &Ctx.Idents.get("count") - }; - Sel = Ctx.Selectors.getSelector(2, KeyIdents); - break; - } } return (NSArraySelectors[MK] = Sel); } @@ -217,15 +209,6 @@ Selector NSAPI::getNSDictionarySelector( Sel = Ctx.Selectors.getSelector(2, KeyIdents); break; } - case NSDict_initWithObjectsForKeysCount: { - IdentifierInfo *KeyIdents[] = { - &Ctx.Idents.get("initWithObjects"), - &Ctx.Idents.get("forKeys"), - &Ctx.Idents.get("count") - }; - Sel = Ctx.Selectors.getSelector(3, KeyIdents); - break; - } } return (NSDictionarySelectors[MK] = Sel); } |