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 | 3b65187d2fe70f039f2de8a799dcd6f1310382f0 (patch) | |
tree | ceceb3e55a99b2e557ef094c05d66bae6d10354f /llvm/lib/IR/AttributeImpl.h | |
parent | 2ce0ac5a8c6773dbb36d20f93f78f481812e1a34 (diff) | |
download | bcm5719-llvm-3b65187d2fe70f039f2de8a799dcd6f1310382f0.tar.gz bcm5719-llvm-3b65187d2fe70f039f2de8a799dcd6f1310382f0.zip |
Revert s/Raw/getBitMask/g name change. This is possibly causing LTO test hangings.
llvm-svn: 172020
Diffstat (limited to 'llvm/lib/IR/AttributeImpl.h')
-rw-r--r-- | llvm/lib/IR/AttributeImpl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/AttributeImpl.h b/llvm/lib/IR/AttributeImpl.h index 1164d688bf2..10f30e740c7 100644 --- a/llvm/lib/IR/AttributeImpl.h +++ b/llvm/lib/IR/AttributeImpl.h @@ -57,7 +57,7 @@ public: bool operator==(StringRef Kind) const; bool operator!=(StringRef Kind) const; - uint64_t getBitMask() const; // FIXME: Remove. + uint64_t Raw() const; // FIXME: Remove. static uint64_t getAttrMask(Attribute::AttrKind Val); @@ -93,7 +93,7 @@ public: ArrayRef<AttributeWithIndex> AttrList){ for (unsigned i = 0, e = AttrList.size(); i != e; ++i) { ID.AddInteger(AttrList[i].Index); - ID.AddInteger(AttrList[i].Attrs.getBitMask()); + ID.AddInteger(AttrList[i].Attrs.Raw()); } } }; |