diff options
Diffstat (limited to 'test/BlocksRuntime/flagsisa.c')
-rw-r--r-- | test/BlocksRuntime/flagsisa.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/BlocksRuntime/flagsisa.c b/test/BlocksRuntime/flagsisa.c new file mode 100644 index 0000000000000..5d4b2dcb40300 --- /dev/null +++ b/test/BlocksRuntime/flagsisa.c @@ -0,0 +1,21 @@ +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. + +#include <stdio.h> + +/* CONFIG rdar://6310599 + */ + +int main(int argc, char *argv[]) +{ + __block int flags; + __block void *isa; + + ^{ flags=1; isa = (void *)isa; }; + printf("%s: success\n", argv[0]); + return 0; +} + |