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