Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / Rewriter / rewrite-foreach-in-block.mm
blobb7d1dc1bb13f02cde116ee16080dc9333a14beab
1 // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o %t-rw.cpp
2 // RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -Wno-address-of-temporary -D"id=struct objc_object*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
3 // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %s -o %t-modern-rw.cpp
4 // RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -Wno-address-of-temporary -D"id=struct objc_object*" -D"SEL=void*" -D"__declspec(X)=" %t-modern-rw.cpp
6 typedef unsigned long size_t;
8 void objc_enumerationMutation(id);
9 void *sel_registerName(const char *);
10 typedef void (^CoreDAVCompletionBlock)(void);
12 @interface I
13 - (void)M;
14 - (id) ARR;
15 @property (readwrite, copy, nonatomic) CoreDAVCompletionBlock c;
16 @end
18 @implementation I
19 - (void)M {
20     I* ace;
21     self.c = ^() {
22           // Basic correctness check for the changes.
23           [ace ARR];
24           for (I *privilege in [ace ARR]) { }
25     };
26     self.c = ^() {
27           // Basic correctness test for the changes.
28           [ace ARR];
29     };
31 @end