blob: be9c94fd176a8b1498927f2f2194d9b3339a0d8e [file] [log] [blame]
Stuart Hastingsb08ec102009-07-06 15:36:23 +00001// Insure __block_holder_tmp is allocated on the stack. Darwin only.
Stuart Hastings4b201f82009-07-01 15:40:10 +00002// RUN: %llvmgxx %s -S -O2 -o - | egrep {__block_holder_tmp.*alloca}
Stuart Hastingsb08ec102009-07-06 15:36:23 +00003// XFAIL: *
4// XTARGET: darwin
Stuart Hastings4b201f82009-07-01 15:40:10 +00005// <rdar://problem/5865221>
Stuart Hastingsb08ec102009-07-06 15:36:23 +00006// END.
Stuart Hastings4b201f82009-07-01 15:40:10 +00007extern void fubar_dispatch_sync(void (^PP)(void));
8void fubar() {
9 __block void *voodoo;
10 fubar_dispatch_sync(^(void){voodoo=0;});
11}