[llvm-commits] [llvm] r173661 - Mid-air collision. reapply r173656.
Bill Wendling
isanbard at gmail.com
Sun Jan 27 21:51:41 PST 2013
Author: void
Date: Sun Jan 27 23:51:40 2013
New Revision: 173661
URL: http://llvm.org/viewvc/llvm-project?rev=173661&view=rev
Log:
Mid-air collision. reapply r173656.
Modified:
llvm/trunk/include/llvm/IR/Attributes.h
llvm/trunk/lib/IR/Attributes.cpp
Modified: llvm/trunk/include/llvm/IR/Attributes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Attributes.h?rev=173661&r1=173660&r2=173661&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Attributes.h (original)
+++ llvm/trunk/include/llvm/IR/Attributes.h Sun Jan 27 23:51:40 2013
@@ -287,19 +287,19 @@ public:
AttributeSet getFnAttributes() const;
/// \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.
- bool hasAttributes(uint64_t Index) const;
+ bool hasAttributes(unsigned Index) const;
/// \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.
- unsigned getStackAlignment(uint64_t Index) const;
+ unsigned getStackAlignment(unsigned Index) const;
/// \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;
Modified: llvm/trunk/lib/IR/Attributes.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/Attributes.cpp?rev=173661&r1=173660&r2=173661&view=diff
==============================================================================
--- llvm/trunk/lib/IR/Attributes.cpp (original)
+++ llvm/trunk/lib/IR/Attributes.cpp Sun Jan 27 23:51:40 2013
@@ -710,23 +710,23 @@ AttributeSet AttributeSet::getSlotAttrib
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);
}
-bool AttributeSet::hasAttributes(uint64_t Index) const {
+bool AttributeSet::hasAttributes(unsigned Index) const {
return getAttributes(Index).hasAttributes();
}
-std::string AttributeSet::getAsString(uint64_t Index) const {
+std::string AttributeSet::getAsString(unsigned Index) const {
return getAttributes(Index).getAsString();
}
-unsigned AttributeSet::getParamAlignment(uint64_t Idx) const {
+unsigned AttributeSet::getParamAlignment(unsigned Idx) const {
return getAttributes(Idx).getAlignment();
}
-unsigned AttributeSet::getStackAlignment(uint64_t Index) const {
+unsigned AttributeSet::getStackAlignment(unsigned Index) const {
return getAttributes(Index).getStackAlignment();
}
More information about the llvm-commits
mailing list