blob: 5d4b2dcb4030085e3013b2d4a47b4bffbe178431 [file] [log] [blame]
Blaine Garst86d0ba42010-08-04 23:34:21 +00001//
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
12int 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