Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Rewriter / rewrite-rewritten-initializer.mm
blobb24c00cc852b1c90c080de27a406c41e615cf616
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 -Wno-address-of-temporary -D"SEL=void*" -U__declspec -D"__declspec(X)=" %t-rw.cpp
3 // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %s -o %t-rw-modern.cpp
4 // RUN: %clang_cc1 -fsyntax-only -Werror -Wno-address-of-temporary -D"SEL=void*" -U__declspec -D"__declspec(X)=" %t-rw-modern.cpp
6 typedef unsigned long size_t;
7 typedef void * id;
8 void *sel_registerName(const char *);
10 @interface NSMutableString
11 - (NSMutableString *)string;
12 @end
14 @interface Z
15 @end
17 @implementation Z
19 - (void)x {
20         id numbers;
21     int i, numbersCount = 42;
22     __attribute__((__blocks__(byref))) int blockSum = 0;
23     void (^add)(id n, int idx, char *stop) = ^(id n, int idx, char *stop) { };
24     [numbers enumerateObjectsUsingBlock:add];
25     NSMutableString *forwardAppend = [NSMutableString string];
26     __attribute__((__blocks__(byref))) NSMutableString *blockAppend = [NSMutableString string];
29 @end