blob: 39c5b06b1727f6ff4aefa560b7743a0c17b743e6 [file] [log] [blame]
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +00001// RUN: clang-cc -triple i386-unknown-unknown %s -emit-llvm -o %t -fblocks &&
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
15// RUN: grep 'internal void @__f2_block_invoke_(.struct.s0\* noalias sret .*, .*, .* byval .*)' %t &&
16struct 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
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +000030// RUN: true