summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/DeclSpec.cpp
diff options
context:
space:
mode:
authorErich Keane <erich.keane@intel.com>2018-07-13 15:07:47 +0000
committerErich Keane <erich.keane@intel.com>2018-07-13 15:07:47 +0000
commite891aa971a70af92042a77ec314e9541a00eeb2c (patch)
treea8b400d6a8a6861a1e9d14790fa8da286b80fb1c /clang/lib/Sema/DeclSpec.cpp
parentfb0d4e44328910fae3e8c4ac95c8ec01bf3a1b2e (diff)
downloadbcm5719-llvm-e891aa971a70af92042a77ec314e9541a00eeb2c.tar.gz
bcm5719-llvm-e891aa971a70af92042a77ec314e9541a00eeb2c.zip
[NFC] Rename clang::AttributeList to clang::ParsedAttr
Since The type no longer contains the 'next' item anymore, it isn't a list, so rename it to ParsedAttr to be more accurate. llvm-svn: 337005
Diffstat (limited to 'clang/lib/Sema/DeclSpec.cpp')
-rw-r--r--clang/lib/Sema/DeclSpec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/DeclSpec.cpp b/clang/lib/Sema/DeclSpec.cpp
index 01c9bad16f1..ccca5d37ea3 100644
--- a/clang/lib/Sema/DeclSpec.cpp
+++ b/clang/lib/Sema/DeclSpec.cpp
@@ -994,7 +994,7 @@ void DeclSpec::SaveWrittenBuiltinSpecs() {
writtenBS.Width = getTypeSpecWidth();
writtenBS.Type = getTypeSpecType();
// Search the list of attributes for the presence of a mode attribute.
- writtenBS.ModeAttr = getAttributes().hasAttribute(AttributeList::AT_Mode);
+ writtenBS.ModeAttr = getAttributes().hasAttribute(ParsedAttr::AT_Mode);
}
/// Finish - This does final analysis of the declspec, rejecting things like
OpenPOWER on IntegriCloud