aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/AttributeList.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2012-05-02 16:18:45 +0000
committerDouglas Gregor <dgregor@apple.com>2012-05-02 16:18:45 +0000
commit331d2ec7cd4c6b5e29cc61fcdc617bf708223cd4 (patch)
treebec68c49ec3efc253d272b6bbf3f2d118258a51c /lib/Sema/AttributeList.cpp
parent3e7d31aa6050a2fb6cb35912793eb3f1b3a22030 (diff)
Introduce the notion of 'ignored' attributes, so that all attributes
we accept are not modeled somehow via Attr.td. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155998 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/AttributeList.cpp')
-rw-r--r--lib/Sema/AttributeList.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Sema/AttributeList.cpp b/lib/Sema/AttributeList.cpp
index dd478f2a2b..cbd2ba4194 100644
--- a/lib/Sema/AttributeList.cpp
+++ b/lib/Sema/AttributeList.cpp
@@ -107,7 +107,5 @@ AttributeList::Kind AttributeList::getKind(const IdentifierInfo *Name) {
return llvm::StringSwitch<AttributeList::Kind>(AttrName)
#include "clang/Sema/AttrParsedAttrKinds.inc"
- .Case("bounded", IgnoredAttribute) // OpenBSD
- .Case("vec_type_hint", IgnoredAttribute)
.Default(UnknownAttribute);
}