Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Rewriter / objc-modern-StretAPI.mm
blob618c229fafde990a6fdb9f8d76cc10c9982f2388
1 // RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %s -o %t-rw.cpp
2 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
4 extern "C" void *sel_registerName(const char *);
5 typedef unsigned long size_t;
7 union U {
8   double d1;
9   char filler[32];
12 struct S {
13   char filler[128];
16 @interface I
17 - (struct S) Meth : (int) arg1 : (id) arg2;
18 - (struct S) Meth1;
19 - (union U) Meth2 : (double)d;
20 - (struct S) VAMeth : (int)anchor, ...;
21 @end
23 I* PI();
25 extern "C" {
27 struct S foo () {
28   struct S s = [PI() Meth : 1 : (id)0];
30   U u = [PI() Meth2 : 3.14];
32   S s1 = [PI() VAMeth : 12, 13.4, 1000, "hello"];
34   S s2 = [PI() VAMeth : 12];
36   S s3 = [PI() VAMeth : 0, "hello", "there"];
38   S s4 = [PI() VAMeth : 2, ^{}, &foo];
40   return [PI() Meth1];