File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -1944,6 +1944,12 @@ void Sema::DiagnoseUnusedButSetDecl(const VarDecl *VD) {
1944
1944
}
1945
1945
}
1946
1946
1947
+ // Don't warn about __block Objective-C pointer variables, as they might
1948
+ // be assigned in the block but not used elsewhere for the purpose of lifetime
1949
+ // extension.
1950
+ if (VD->hasAttr<BlocksAttr>() && Ty->isObjCObjectPointerType())
1951
+ return;
1952
+
1947
1953
auto iter = RefsMinusAssignments.find(VD);
1948
1954
if (iter == RefsMinusAssignments.end())
1949
1955
return;
Original file line number Diff line number Diff line change
1
+ // RUN: %clang_cc1 -triple x86_64-apple-macos11 -fsyntax-only -fobjc-arc -fblocks -verify -Wunused-but-set-variable -Wno-objc-root-class %s
2
+
3
+ typedef struct dispatch_queue_s *dispatch_queue_t ;
4
+
5
+ typedef void (^dispatch_block_t )(void );
6
+
7
+ void dispatch_async (dispatch_queue_t queue, dispatch_block_t block);
8
+
9
+ extern __attribute__ ((visibility(" default" ))) struct dispatch_queue_s _dispatch_main_q;
10
+
11
+ id getFoo ();
12
+
13
+ @protocol P
14
+
15
+ @end
16
+
17
+ @interface I
18
+
19
+ @end
20
+
21
+ void test () {
22
+ // no diagnostics
23
+ __block id x = getFoo ();
24
+ __block id <P> y = x;
25
+ __block I *z = (I *)x;
26
+ // diagnose non-block variables
27
+ id x2 = getFoo (); // expected-warning {{variable 'x2' set but not used}}
28
+ dispatch_async (&_dispatch_main_q, ^{
29
+ x = ((void *)0 );
30
+ y = x;
31
+ z = ((void *)0 );
32
+ });
33
+ x2 = getFoo ();
34
+ }
You can’t perform that action at this time.
0 commit comments