Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Rewriter / rewrite-local-static-id.mm
blob067cfd8c730f42555ce27bc83d51af70371f2be5
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 -Wno-address-of-temporary -Did="void *" -D"SEL=void*" -D"__declspec(X)=" -emit-llvm -o %t %t-rw.cpp
4 void *sel_registerName(const char *);
6 @interface foo
7 @end
9 @interface foo2 : foo
10 + (id)x;
11 @end
13 typedef void (^b_t)(void);
15 void bar(b_t block);
17 void f() {
18         static id foo = 0;
19         bar(^{
20                 foo = [foo2 x];
21         });