aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/blocks-1.c
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-03-25 17:58:24 +0000
committerMike Stump <mrs@apple.com>2009-03-25 17:58:24 +0000
commita803b0e6ca0d1c71a0b3f5d7380da8bbacf2f983 (patch)
treea44333874d55cc0281e8c1b105408ff59ed49b72 /test/CodeGen/blocks-1.c
parent65633f96c97af2553fad548180f199615d570c03 (diff)
Fixup codegen for block literals that bleed copy/dispose information
from previous block literals. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67696 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/blocks-1.c')
-rw-r--r--test/CodeGen/blocks-1.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/CodeGen/blocks-1.c b/test/CodeGen/blocks-1.c
index 5fbe76c15d..d6fc159520 100644
--- a/test/CodeGen/blocks-1.c
+++ b/test/CodeGen/blocks-1.c
@@ -57,6 +57,7 @@ void test5() {
void test6() {
__block int i;
^{ i=1; }();
+ ^{};
}
int main() {