diff options
Diffstat (limited to 'clang/test/Sema/block-storageclass.c')
-rw-r--r-- | clang/test/Sema/block-storageclass.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/clang/test/Sema/block-storageclass.c b/clang/test/Sema/block-storageclass.c new file mode 100644 index 0000000..9bfbfbd --- /dev/null +++ b/clang/test/Sema/block-storageclass.c @@ -0,0 +1,18 @@ +// RUN: %clang_cc1 %s -fsyntax-only -verify -fblocks + +int printf(const char *, ...); +void _Block_byref_release(void*src){} + +int main() { + __block int X = 1234; + __block const char * message = "HELLO"; + + X = X - 1234; + + X += 1; + + printf ("%s(%d)\n", message, X); + X -= 1; + + return X; +} |