[Sanitizer] Add rudimentary support for wide-character strings to scanf/printf interc...
[blocksruntime.git] / test / BlocksRuntime / flagsisa.c
blob5d4b2dcb4030085e3013b2d4a47b4bffbe178431
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.
7 #include <stdio.h>
9 /* CONFIG rdar://6310599
12 int main(int argc, char *argv[])
14 __block int flags;
15 __block void *isa;
17 ^{ flags=1; isa = (void *)isa; };
18 printf("%s: success\n", argv[0]);
19 return 0;