From: Alex Lorenz Date: Wed, 8 Nov 2017 22:44:34 +0000 (+0000) Subject: [ObjC] Fix function signature handling for blocks literals with attributes X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b3bb0e871c0e3f5dd45e1b64efda3609d7e4e0f8;p=clang [ObjC] Fix function signature handling for blocks literals with attributes Block literals can have a type with attributes in its signature, e.g. ns_returns_retained. The code that inspected the type loc of the block when declaring its parameters didn't account for this fact, and only looked through paren type loc. This commit ensures that getAsAdjusted is used instead of IgnoreParens to find the block's FunctionProtoTypeLoc. This ensures that block parameters are declared correctly in the block and avoids the 'undeclared identifier' error. rdar://35416160 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@317736 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaExpr.cpp b/lib/Sema/SemaExpr.cpp index d80237d248..d5a7bc31a8 100644 --- a/lib/Sema/SemaExpr.cpp +++ b/lib/Sema/SemaExpr.cpp @@ -12859,8 +12859,8 @@ void Sema::ActOnBlockArguments(SourceLocation CaretLoc, Declarator &ParamInfo, // Look for an explicit signature in that function type. FunctionProtoTypeLoc ExplicitSignature; - TypeLoc tmp = Sig->getTypeLoc().IgnoreParens(); - if ((ExplicitSignature = tmp.getAs())) { + if ((ExplicitSignature = + Sig->getTypeLoc().getAsAdjusted())) { // Check whether that explicit signature was synthesized by // GetTypeForDeclarator. If so, don't save that as part of the diff --git a/test/SemaObjC/block-literal-with-attribute.m b/test/SemaObjC/block-literal-with-attribute.m new file mode 100644 index 0000000000..24ef2aafa8 --- /dev/null +++ b/test/SemaObjC/block-literal-with-attribute.m @@ -0,0 +1,15 @@ +// RUN: %clang_cc1 -fsyntax-only %s -verify -fblocks -fobjc-arc +// RUN: %clang_cc1 -fsyntax-only %s -verify -fblocks +// FIXME: should compile + +__auto_type block = ^ id __attribute__((ns_returns_retained)) (id filter) { + return filter; // ok +}; +__auto_type block2 = ^ __attribute__((ns_returns_retained)) id (id filter) { + return filter; // ok +}; +__auto_type block3 = ^ id (id filter) __attribute__((ns_returns_retained)) { + return filter; // ok +}; + +// expected-no-diagnostics