From 0702d02b319405f4d70a381034e21c9c62a0cbc3 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Thu, 27 Mar 2014 20:36:32 +0000 Subject: Reverting r204952, while I figure out what's going on with the makefile build. llvm-svn: 204955 --- clang/lib/Basic/Attributes.cpp | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 clang/lib/Basic/Attributes.cpp (limited to 'clang/lib/Basic/Attributes.cpp') diff --git a/clang/lib/Basic/Attributes.cpp b/clang/lib/Basic/Attributes.cpp deleted file mode 100644 index 555c8f8789b..00000000000 --- a/clang/lib/Basic/Attributes.cpp +++ /dev/null @@ -1,20 +0,0 @@ -#include "clang/Basic/Attributes.h" -#include "clang/Basic/IdentifierTable.h" -#include "llvm/ADT/StringSwitch.h" - -namespace clang { - -bool HasAttribute(AttrSyntax Syntax, const IdentifierInfo *Scope, - const IdentifierInfo *Attr, const llvm::Triple &T, - const LangOptions &LangOpts) { - StringRef Name = Attr->getName(); - // Normalize the attribute name, __foo__ becomes foo. - if (Name.size() >= 4 && Name.startswith("__") && Name.endswith("__")) - Name = Name.substr(2, Name.size() - 4); - -#include "clang/Basic/AttrHasAttributeImpl.inc" - - return false; -} - -} // end namespace clang -- cgit v1.2.3