Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Rewriter / rewrite-unique-block-api.mm
blob5058fbd0fa9f98d1019749d1e7f996f7b19648b5
1 // RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o %t-rw.cpp
2 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
3 // RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %s -o %t-modern-rw.cpp
4 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-modern-rw.cpp
6 typedef unsigned long size_t;
7 void f(void (^b)(char c));
9 @interface a
10 - (void)processStuff;
11 @end
13 @implementation a
14 - (void)processStuff {
15     f(^(char x) { });
17 @end
19 @interface b
20 - (void)processStuff;
21 @end
23 @implementation b
24 - (void)processStuff {
25     f(^(char x) { });
27 @end