blob: 71f7171c7181c734efe70a3f0349b680f760baa3 [file] [log] [blame]
John McCall410ffb22011-08-25 23:04:34 +00001// RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o - -fblocks | FileCheck %s
Anders Carlsson4de9fce2009-03-01 01:09:12 +00002void (^f)(void) = ^{};
Anders Carlssona17d7cc2009-04-08 02:55:55 +00003
4// rdar://6768379
5int f0(int (^a0)()) {
6 return a0(1, 2, 3);
7}
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +00008
9// Verify that attributes on blocks are set correctly.
10typedef struct s0 T;
11struct s0 {
12 int a[64];
13};
14
Fariborz Jahanian4904bf42012-06-26 16:06:38 +000015// CHECK: define internal void @__f2_block_invoke(%struct.s0* noalias sret {{%.*}}, i8* {{%.*}}, %struct.s0* byval align 4 {{.*}})
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +000016struct s0 f2(struct s0 a0) {
17 return ^(struct s0 a1){ return a1; }(a0);
18}
19
Chris Lattnerf1c97eb2009-04-21 04:41:23 +000020// This should not crash: rdar://6808051
21void *P = ^{
22 void *Q = __func__;
23};
24
Mike Stumpdd2fb9c2009-05-01 01:31:57 +000025void (^test1)(void) = ^(void) {
26 __block int i;
27 ^ { i = 1; }();
28};
Chris Lattnerf1c97eb2009-04-21 04:41:23 +000029
John McCallc71a4912010-06-04 19:02:56 +000030typedef double ftype(double);
31// It's not clear that we *should* support this syntax, but until that decision
32// is made, we should support it properly and not crash.
33ftype ^test2 = ^ftype {
34 return 0;
35};
John McCall46ec70e2010-10-28 21:37:57 +000036
37// rdar://problem/8605032
38void f3_helper(void (^)(void));
39void f3() {
40 _Bool b = 0;
41 f3_helper(^{ if (b) {} });
42}
John McCall6ea48412012-04-26 21:14:42 +000043
44// rdar://problem/11322251
John McCall6c803f72012-05-01 20:28:00 +000045// The bool can fill in between the header and the long long.
46// Add the appropriate amount of padding between them.
John McCall6ea48412012-04-26 21:14:42 +000047void f4_helper(long long (^)(void));
John McCall6c803f72012-05-01 20:28:00 +000048// CHECK: define void @f4()
John McCall6ea48412012-04-26 21:14:42 +000049void f4(void) {
50 _Bool b = 0;
51 long long ll = 0;
John McCall6c803f72012-05-01 20:28:00 +000052 // CHECK: alloca <{ i8*, i32, i32, i8*, {{%.*}}*, i8, [3 x i8], i64 }>, align 8
John McCall6ea48412012-04-26 21:14:42 +000053 f4_helper(^{ if (b) return ll; return 0LL; });
54}
John McCall6c803f72012-05-01 20:28:00 +000055
56// rdar://problem/11354538
57// The alignment after rounding up to the align of F5 is actually
58// greater than the required alignment. Don't assert.
59struct F5 {
60 char buffer[32] __attribute((aligned));
61};
62void f5_helper(void (^)(struct F5 *));
63// CHECK: define void @f5()
64void f5(void) {
65 struct F5 value;
66 // CHECK: alloca <{ i8*, i32, i32, i8*, {{%.*}}*, [12 x i8], [[F5:%.*]] }>, align 16
67 f5_helper(^(struct F5 *slot) { *slot = value; });
68}