Mid-air collision. reapply r173656.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173661 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling
2013-01-28 05:51:40 +00:00
parent 98b92f3bf5
commit 19d815c04f
2 changed files with 10 additions and 10 deletions

View File

@@ -287,19 +287,19 @@ public:
AttributeSet getFnAttributes() const; AttributeSet getFnAttributes() const;
/// \brief Return true if the attribute exists at the given index. /// \brief Return true if the attribute exists at the given index.
bool hasAttribute(uint64_t Index, Attribute::AttrKind Kind) const; bool hasAttribute(unsigned Index, Attribute::AttrKind Kind) const;
/// \brief Return true if attribute exists at the given index. /// \brief Return true if attribute exists at the given index.
bool hasAttributes(uint64_t Index) const; bool hasAttributes(unsigned Index) const;
/// \brief Return the alignment for the specified function parameter. /// \brief Return the alignment for the specified function parameter.
unsigned getParamAlignment(uint64_t Idx) const; unsigned getParamAlignment(unsigned Idx) const;
/// \brief Get the stack alignment. /// \brief Get the stack alignment.
unsigned getStackAlignment(uint64_t Index) const; unsigned getStackAlignment(unsigned Index) const;
/// \brief Return the attributes at the index as a string. /// \brief Return the attributes at the index as a string.
std::string getAsString(uint64_t Index) const; std::string getAsString(unsigned Index) const;
uint64_t Raw(unsigned Index) const; uint64_t Raw(unsigned Index) const;

View File

@@ -710,23 +710,23 @@ AttributeSet AttributeSet::getSlotAttributes(unsigned Slot) const {
return pImpl->getSlotAttributes(Slot); return pImpl->getSlotAttributes(Slot);
} }
bool AttributeSet::hasAttribute(uint64_t Index, Attribute::AttrKind Kind) const{ bool AttributeSet::hasAttribute(unsigned Index, Attribute::AttrKind Kind) const{
return getAttributes(Index).hasAttribute(Kind); return getAttributes(Index).hasAttribute(Kind);
} }
bool AttributeSet::hasAttributes(uint64_t Index) const { bool AttributeSet::hasAttributes(unsigned Index) const {
return getAttributes(Index).hasAttributes(); return getAttributes(Index).hasAttributes();
} }
std::string AttributeSet::getAsString(uint64_t Index) const { std::string AttributeSet::getAsString(unsigned Index) const {
return getAttributes(Index).getAsString(); return getAttributes(Index).getAsString();
} }
unsigned AttributeSet::getParamAlignment(uint64_t Idx) const { unsigned AttributeSet::getParamAlignment(unsigned Idx) const {
return getAttributes(Idx).getAlignment(); return getAttributes(Idx).getAlignment();
} }
unsigned AttributeSet::getStackAlignment(uint64_t Index) const { unsigned AttributeSet::getStackAlignment(unsigned Index) const {
return getAttributes(Index).getStackAlignment(); return getAttributes(Index).getStackAlignment();
} }