summaryrefslogtreecommitdiff
path: root/include/llvm/IR/Attributes.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-01-09 23:36:50 +0000
committerBill Wendling <isanbard@gmail.com>2013-01-09 23:36:50 +0000
commit1db9b6957c2565a2322206bd5907530895f1c7ac (patch)
treeee7003977a4b12b1bd6a2252bdb3a603534a5a19 /include/llvm/IR/Attributes.h
parente92800dd533988c46e58b0f4226df76a3bb1cb0c (diff)
downloadllvm-1db9b6957c2565a2322206bd5907530895f1c7ac.tar.gz
llvm-1db9b6957c2565a2322206bd5907530895f1c7ac.tar.bz2
llvm-1db9b6957c2565a2322206bd5907530895f1c7ac.tar.xz
Revert s/Raw/getBitMask/g name change. This is possibly causing LTO test hangings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172020 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/IR/Attributes.h')
-rw-r--r--include/llvm/IR/Attributes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/IR/Attributes.h b/include/llvm/IR/Attributes.h
index 95b654ce66..b4005e07c2 100644
--- a/include/llvm/IR/Attributes.h
+++ b/include/llvm/IR/Attributes.h
@@ -142,7 +142,7 @@ public:
return pImpl != A.pImpl;
}
- uint64_t getBitMask() const;
+ uint64_t Raw() const;
/// \brief Which attributes cannot be applied to a type.
static Attribute typeIncompatible(Type *Ty);
@@ -302,7 +302,7 @@ public:
/// \brief Return the attributes at the index as a string.
std::string getAsString(unsigned Index) const;
- uint64_t getBitMask(unsigned Index) const;
+ uint64_t Raw(unsigned Index) const;
/// \brief Return true if the specified attribute is set for at least one
/// parameter or for the return value.
@@ -445,7 +445,7 @@ public:
.removeAttribute(Attribute::NoDuplicate);
}
- uint64_t getBitMask() const;
+ uint64_t Raw() const;
bool operator==(const AttrBuilder &B);
bool operator!=(const AttrBuilder &B) {