[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / ARCMT / remove-statements.m
blob286a8e715e0d3f1aabe8a28c7c6690b8c9b41a04
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 #include "Common.h"
7 @interface myController : NSObject
8 -(id)test:(id)x;
9 @end
11 #define MY_MACRO1(x)
12 #define MY_MACRO2(x) (void)x
14 @implementation myController
15 -(id) test:(id) x {
16   [[x retain] release];
17   return [[x retain] autorelease];
20 -(void)dealloc
22   id array, array_already_empty;
23   for (id element in array_already_empty) {
24   }
26   [array release];
27   ;
29   int b, b_array_already_empty;
30   if (b)
31     [array release];
32   if (b_array_already_empty) ;
34   if (b) {
35     [array release];
36   }
37   if (b_array_already_empty) {
38   }
40   if (b)
41     MY_MACRO1(array);
42   if (b)
43     MY_MACRO2(array);
45 @end