Have AttributesImpl defriend the Attributes class.
authorBill Wendling <isanbard@gmail.com>
Tue, 16 Oct 2012 05:57:28 +0000 (05:57 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 16 Oct 2012 05:57:28 +0000 (05:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166012 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Attributes.cpp
lib/VMCore/AttributesImpl.h

index 393eab0eef89a902d54fb8a97007d18032b9423d..cf8a89571a1bed12bcdd0ec2ecf100bad204c3cb 100644 (file)
@@ -88,7 +88,7 @@ unsigned Attributes::getStackAlignment() const {
 }
 
 uint64_t Attributes::Raw() const {
-  return Attrs ? Attrs->Bits : 0; // FIXME: Don't access this directly!
+  return Attrs ? Attrs->Raw() : 0;
 }
 
 Attributes Attributes::typeIncompatible(Type *Ty) {
index 93001e279f5a75d6bb5e7729bc153722536bd152..b4a0f615f36ac0b3bd99ac2cf8aa8557d686c788 100644 (file)
@@ -22,9 +22,7 @@ namespace llvm {
 class Attributes;
 
 class AttributesImpl : public FoldingSetNode {
-  friend class Attributes;
   uint64_t Bits;                // FIXME: We will be expanding this.
-
 public:
   AttributesImpl(uint64_t bits) : Bits(bits) {}
 
@@ -36,6 +34,8 @@ public:
   uint64_t getAlignment() const;
   uint64_t getStackAlignment() const;
 
+  uint64_t Raw() const { return Bits; } // FIXME: Remove.
+
   static uint64_t getAttrMask(uint64_t Val);
 
   void Profile(FoldingSetNodeID &ID) const {