Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / objc-dictionary-literal.m
blobc5ba9039dbb7e7f5df1a2d728c4303a06bfc2833
1 // RUN: %clang_cc1 -x objective-c -triple x86_64-apple-darwin10 -fblocks -emit-llvm %s -o /dev/null
2 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -fblocks -emit-llvm %s -o /dev/null
4 @interface NSNumber
5 + (NSNumber *)numberWithChar:(char)value;
6 + (NSNumber *)numberWithInt:(int)value;
7 @end
9 @protocol NSCopying @end
10 typedef unsigned long NSUInteger;
12 @interface NSDictionary
13 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id <NSCopying> [])keys count:(NSUInteger)cnt;
14 @end
16 @interface NSString<NSCopying>
17 @end
19 int main(void) {
20         NSDictionary *dict = @{ @"name":@666 };
21         NSDictionary *dict1 = @{ @"name":@666 };
22         NSDictionary *dict2 = @{ @"name":@666 };
23         return 0;