Remove Attribute::hasAttributes() and make Attribute::hasAttribute() private.

The Attribute::hasAttributes() is kind of meaningless since an Attribute can
have only one attribute. And we would rather people use the 'operator=='
instead of Attribute::hasAttribute().

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174026 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling
2013-01-31 02:18:19 +00:00
parent a070d2a035
commit 85238aae1a
3 changed files with 9 additions and 21 deletions

View File

@@ -107,6 +107,9 @@ private:
Attribute(AttributeImpl *A) : pImpl(A) {}
static Attribute get(LLVMContext &Context, AttrBuilder &B);
/// \brief Return true if the attribute is present.
bool hasAttribute(AttrKind Val) const;
public:
Attribute() : pImpl(0) {}
@@ -126,12 +129,6 @@ public:
// Attribute Accessors
//===--------------------------------------------------------------------===//
/// \brief Return true if the attribute is present.
bool hasAttribute(AttrKind Val) const;
/// \brief Return true if attributes exist
bool hasAttributes() const;
/// \brief Return the kind of this attribute.
Constant *getAttributeKind() const;