diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2018-08-20 21:47:29 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2018-08-20 21:47:29 +0000 |
commit | e43e2b3667f9bc29c23be5235b53a7d7afcdb181 (patch) | |
tree | 8177f2851e33d4a877198dcd8700e48a12b163b7 /clang/lib/Sema/SemaInit.cpp | |
parent | 210ccfe3db1b4d6f1a9ea9cc9b6232f161766a29 (diff) | |
download | bcm5719-llvm-e43e2b3667f9bc29c23be5235b53a7d7afcdb181.tar.gz bcm5719-llvm-e43e2b3667f9bc29c23be5235b53a7d7afcdb181.zip |
Model type attributes as regular Attrs.
Specifically, AttributedType now tracks a regular attr::Kind rather than
having its own parallel Kind enumeration, and AttributedTypeLoc now
holds an Attr* instead of holding an ad-hoc collection of Attr fields.
Differential Revision: https://reviews.llvm.org/D50526
This reinstates r339623, reverted in r339638, with a fix to not fail
template instantiation if we instantiate a QualType with no associated
type source information and we encounter an AttributedType.
llvm-svn: 340215
Diffstat (limited to 'clang/lib/Sema/SemaInit.cpp')
-rw-r--r-- | clang/lib/Sema/SemaInit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaInit.cpp b/clang/lib/Sema/SemaInit.cpp index 1f28056e254..b95ad1054d7 100644 --- a/clang/lib/Sema/SemaInit.cpp +++ b/clang/lib/Sema/SemaInit.cpp @@ -6360,7 +6360,7 @@ static bool implicitObjectParamIsLifetimeBound(const FunctionDecl *FD) { for (TypeLoc TL = TSI->getTypeLoc(); (ATL = TL.getAsAdjusted<AttributedTypeLoc>()); TL = ATL.getModifiedLoc()) { - if (ATL.getAttrKind() == AttributedType::attr_lifetimebound) + if (ATL.getAttrAs<LifetimeBoundAttr>()) return true; } return false; |