summaryrefslogtreecommitdiff
path: root/test/CodeGenObjCXX/Inputs
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2014-10-28 18:28:16 +0000
committerFariborz Jahanian <fjahanian@apple.com>2014-10-28 18:28:16 +0000
commit951324d0efb184ccdfb53d848df441c0d31b5df6 (patch)
tree71544535da8c8c7f60f4f7765f0c37cb811d4832 /test/CodeGenObjCXX/Inputs
parent1f0ce1fa958d5ceb126b919605f1e200557f0705 (diff)
downloadclang-951324d0efb184ccdfb53d848df441c0d31b5df6.tar.gz
Objective-C. revert patch for rdar://17554063.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@220812 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenObjCXX/Inputs')
-rw-r--r--test/CodeGenObjCXX/Inputs/literal-support.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/test/CodeGenObjCXX/Inputs/literal-support.h b/test/CodeGenObjCXX/Inputs/literal-support.h
index 174ec3a83c..5680a20c9f 100644
--- a/test/CodeGenObjCXX/Inputs/literal-support.h
+++ b/test/CodeGenObjCXX/Inputs/literal-support.h
@@ -3,10 +3,6 @@
typedef unsigned char BOOL;
-@interface NSObject
-+ (id)alloc;
-@end
-
@interface NSNumber @end
@interface NSNumber (NSNumberCreation)
@@ -25,15 +21,14 @@ typedef unsigned char BOOL;
+ (NSNumber *)numberWithBool:(BOOL)value;
@end
-@interface NSArray : NSObject
+@interface NSArray
@end
@interface NSArray (NSArrayCreation)
+ (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
-- (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
@end
-@interface NSDictionary : NSObject
+@interface NSDictionary
+ (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
@end