diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2013-12-06 18:56:03 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2013-12-06 18:56:03 +0000 |
commit | ba0aea16e1902cf39d32e2617b88582519e31a28 (patch) | |
tree | d2fed399ac2cff95587a1727e2a822ee0f7bd2d7 /clang/lib/Sema/SemaDeclAttr.cpp | |
parent | 0e282ef86807c2931147c574d1a45b006d45f5c5 (diff) | |
download | bcm5719-llvm-ba0aea16e1902cf39d32e2617b88582519e31a28.tar.gz bcm5719-llvm-ba0aea16e1902cf39d32e2617b88582519e31a28.zip |
Turning the __w64 attribute into an ignored attribute to match other Microsoft extensions we do not currently support. Note that __w64 has been deprecated in MSVC since 2008.
llvm-svn: 196592
Diffstat (limited to 'clang/lib/Sema/SemaDeclAttr.cpp')
-rw-r--r-- | clang/lib/Sema/SemaDeclAttr.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaDeclAttr.cpp b/clang/lib/Sema/SemaDeclAttr.cpp index 5414453efc1..f5a36542185 100644 --- a/clang/lib/Sema/SemaDeclAttr.cpp +++ b/clang/lib/Sema/SemaDeclAttr.cpp @@ -4125,8 +4125,6 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, handleSimpleAttribute<MultipleInheritanceAttr>(S, D, Attr); break; case AttributeList::AT_VirtualInheritance: handleSimpleAttribute<VirtualInheritanceAttr>(S, D, Attr); break; - case AttributeList::AT_Win64: - handleSimpleAttribute<Win64Attr>(S, D, Attr); break; case AttributeList::AT_ForceInline: handleSimpleAttribute<ForceInlineAttr>(S, D, Attr); break; case AttributeList::AT_SelectAny: |