mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
7ab35df2d2
llvm-svn: 74829
12 lines
340 B
C++
12 lines
340 B
C++
// Insure __block_holder_tmp is allocated on the stack. Darwin only.
|
|
// RUN: %llvmgxx %s -S -O2 -o - | egrep {__block_holder_tmp.*alloca}
|
|
// XFAIL: *
|
|
// XTARGET: darwin
|
|
// <rdar://problem/5865221>
|
|
// END.
|
|
extern void fubar_dispatch_sync(void (^PP)(void));
|
|
void fubar() {
|
|
__block void *voodoo;
|
|
fubar_dispatch_sync(^(void){voodoo=0;});
|
|
}
|