s/Raw/getBitMask/g to be more in line with current naming conventions. This method...
[oota-llvm.git] / lib / VMCore / AttributeImpl.h
index 3b8f818a17bea240c6c507ae197b8f0bd9e4e049..253d6e82eb788a380b497c677c68b2de9b35cc90 100644 (file)
@@ -42,7 +42,7 @@ public:
   uint64_t getAlignment() const;
   uint64_t getStackAlignment() const;
 
-  uint64_t Raw() const;         // FIXME: Remove.
+  uint64_t getBitMask() const;         // FIXME: Remove.
 
   static uint64_t getAttrMask(uint64_t Val);
 
@@ -71,7 +71,7 @@ public:
   }
   static void Profile(FoldingSetNodeID &ID, ArrayRef<AttributeWithIndex> Attrs){
     for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
-      ID.AddInteger(Attrs[i].Attrs.Raw());
+      ID.AddInteger(Attrs[i].Attrs.getBitMask());
       ID.AddInteger(Attrs[i].Index);
     }
   }