Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjCXX / objc-container-subscripting-1.mm
blob48c5f5cc2cf2cbf094d9c6422a04390809f04ae2
1 // RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin -o - %s | FileCheck %s
3 typedef unsigned int size_t;
4 @protocol P @end
5 @protocol NSCopying @end
7 @interface NSMutableArray
8 - (id)objectAtIndexedSubscript:(size_t)index;
9 - (void)setObject:(id)object atIndexedSubscript:(size_t)index;
10 @end
12 struct S {
13   operator unsigned int ();
14   operator id ();
17 @interface NSMutableDictionary
18 - (id)objectForKeyedSubscript:(id<NSCopying>)key;
19 - (void)setObject:(id)object forKeyedSubscript:(id<NSCopying>)key;
20 @end
22 int main() {
23   NSMutableArray<P> * array;
24   S s;
25   id oldObject = array[(int)s];
27   NSMutableDictionary<P> *dict;
28   dict[(id)s] = oldObject;
29   oldObject = dict[(id)s];
33 template <class T> void test2(NSMutableArray *a) {
34   a[10] = 0;
36 template void test2<int>(NSMutableArray*);
37 // CHECK-LABEL: define weak_odr void @_Z5test2IiEvP14NSMutableArray
38 // CHECK: @objc_msgSend 
39 // CHECK: ret void
42 template <class T> void test3(NSMutableArray *a) {
43   a[sizeof(T)] = 0;
46 template void test3<int>(NSMutableArray*);
47 // CHECK-LABEL: define weak_odr void @_Z5test3IiEvP14NSMutableArray
48 // CHECK: @objc_msgSend
49 // CHECK: ret void