xref: /llvm-project/clang/test/CodeGen/block-3.c (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
1 // RUN: %clang_cc1 %s -emit-llvm -o - -fblocks -triple x86_64-apple-darwin10
2 
main(void)3 int main(void) {
4   ^{
5                 __attribute__((__blocks__(byref))) int index = ({ int __a; int __b; __a < __b ? __b : __a; });
6    };
7 }
8 
9 // PR13229
10 typedef struct {} Z;
11 
12 typedef int (^B)(Z);
13 
testPR13229(void)14 void testPR13229(void) {
15   Z z1;
16   B b1 = ^(Z z1) { return 1; };
17   b1(z1);
18 }
19