diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-05-11 23:37:49 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-05-11 23:37:49 +0000 |
commit | 703d412d192397b6fa17c5d99a4c1389aa2be2f3 (patch) | |
tree | 632836946ee0aef242b20d4adf5460ad1a122d41 /lib/Sema | |
parent | 58715da82b9e1e9da937657a562a87f28e61ea6b (diff) |
Teach the parser to deal with multiple spellings for the same
attribute, rather than requiring multiple cases in consumers of this
information.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156666 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema')
-rw-r--r-- | lib/Sema/SemaDeclAttr.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Sema/SemaDeclAttr.cpp b/lib/Sema/SemaDeclAttr.cpp index 284a72e339..93516501aa 100644 --- a/lib/Sema/SemaDeclAttr.cpp +++ b/lib/Sema/SemaDeclAttr.cpp @@ -3792,7 +3792,6 @@ static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D, // by ProcessNonInheritableDeclAttr. break; case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break; - case AttributeList::AT_align: case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break; case AttributeList::AT_always_inline: handleAlwaysInlineAttr (S, D, Attr); break; |