diff options
Diffstat (limited to 'clang/test/CodeGen/blocks-seq.c')
-rw-r--r-- | clang/test/CodeGen/blocks-seq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/CodeGen/blocks-seq.c b/clang/test/CodeGen/blocks-seq.c index b3e672976ca..9b47fbf783d 100644 --- a/clang/test/CodeGen/blocks-seq.c +++ b/clang/test/CodeGen/blocks-seq.c @@ -11,6 +11,7 @@ int rhs(); void foo() { __block int i; + ^{ (void)i; }; i = rhs(); i += rhs(); } |