diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-01-09 23:36:50 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-01-09 23:36:50 +0000 |
commit | 1db9b6957c2565a2322206bd5907530895f1c7ac (patch) | |
tree | ee7003977a4b12b1bd6a2252bdb3a603534a5a19 /include/llvm | |
parent | e92800dd533988c46e58b0f4226df76a3bb1cb0c (diff) | |
download | external_llvm-1db9b6957c2565a2322206bd5907530895f1c7ac.zip external_llvm-1db9b6957c2565a2322206bd5907530895f1c7ac.tar.gz external_llvm-1db9b6957c2565a2322206bd5907530895f1c7ac.tar.bz2 |
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')
-rw-r--r-- | include/llvm/IR/Attributes.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/IR/Attributes.h b/include/llvm/IR/Attributes.h index 95b654c..b4005e0 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) { |