[AMDGPU][AsmParser][NFC] Get rid of custom default operand handlers.
[llvm-project.git] / clang / test / Rewriter / rewrite-block-literal.mm
blobcde6efcbf29d3574fca7c4c6163b8d19d5b3f510
1 // RUN: %clang_cc1 -E %s -o %t.mm
2 // RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %t.mm -o - | FileCheck %s
3 // 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
4 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
5 // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %s -o %t-modern-rw.cpp
6 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-modern-rw.cpp
8 // rdar://11375908
9 typedef unsigned long size_t;
11 // rdar: // 11006566
13 void I( void (^)(void));
14 void (^noop)(void);
16 void nothing();
17 int printf(const char*, ...);
19 typedef void (^T) (void);
21 void takeblock(T);
22 int takeintint(int (^C)(int)) { return C(4); }
24 T somefunction() {
25   if (^{ })
26     nothing();
28   noop = ^{};
30   noop = ^{printf("\nClosure\n"); };
32   I(^{ });
34   return ^{printf("\nClosure\n"); };
36 void test2() {
37   int x = 4;
39   takeblock(^{ printf("%d\n", x); });
41   while (1) {
42     takeblock(^{ 
43         while(1) break;  // ok
44       });
45     break;
46   }
49 void test4() {
50   void (^noop)(void) = ^{};
51   void (*noop2)() = 0;
54 void myfunc(int (^block)(int)) {}
56 void myfunc3(const int *x);
58 void test5() {
59   int a;
61   myfunc(^(int abcd) {
62       myfunc3(&a);
63       return 1;
64     });
67 void *X;
69 static int global_x = 10;
70 void (^global_block)(void) = ^{ printf("global x is %d\n", global_x); };
72 // CHECK: static __global_block_block_impl_0 __global_global_block_block_impl_0((void *)__global_block_block_func_0, &__global_block_block_desc_0_DATA);
73 // CHECK: void (*global_block)(void) = ((void (*)())&__global_global_block_block_impl_0);
75 typedef void (^void_block_t)(void);
77 static const void_block_t myBlock = ^{ };
79 static const void_block_t myBlock2 = ^ void(void) { };