Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / ARCMT / safe-arc-assign.m.result
blobc25955ea7d1c90d69759c917c0f215cf09bc7044
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -fobjc-arc -x objective-c %s.result
2 // RUN: arcmt-test --args -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c %s > %t
3 // RUN: diff %t %s.result
5 void test12(id collection) {
6   for (__strong id x in collection) {
7     x = 0;
8     x = 0;
9   }
11   for (__strong id x in collection) {
12     x = 0;
13   }