1 //
2 //                     The LLVM Compiler Infrastructure
3 //
4 // This file is distributed under the University of Illinois Open Source
5 // License. See LICENSE.TXT for details.
6 
7 #include <stdio.h>
8 
9 /* CONFIG rdar://6310599
10  */
11 
12 int main(int argc, char *argv[])
13 {
14  	__block int flags;
15  	__block void *isa;
16 
17  	^{ flags=1; isa = (void *)isa; };
18         printf("%s: success\n", argv[0]);
19  	return 0;
20 }
21 
22