Hide the method that creates an AttributeSet with AttributeWithIndexes.
authorBill Wendling <isanbard@gmail.com>
Sun, 27 Jan 2013 03:35:32 +0000 (03:35 +0000)
committerBill Wendling <isanbard@gmail.com>
Sun, 27 Jan 2013 03:35:32 +0000 (03:35 +0000)
This method will go away once AttributeWithIndex goes away. In the meantime,
hide it from general use.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173607 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IR/Attributes.h

index bd0a87e117aaa67715d1be6e09a2ab3e24772e9b..855743af5c1e7d61e8860d6b4a374a958d5ee392 100644 (file)
@@ -191,6 +191,7 @@ public:
   };
 private:
   friend class AttrBuilder;
+  friend class AttributeSetImpl;
 
   /// \brief The attributes that we are managing.  This can be null to represent
   /// the empty attributes list.
@@ -210,6 +211,10 @@ private:
   /// list.
   AttributeSet removeAttr(LLVMContext &C, unsigned Idx, Attribute Attrs) const;
 
+  /// \brief Create an AttributeSet from the AttributeWithIndex structures.
+  /// N.B. this is only temporary. It will be disappearing in the future.
+  static AttributeSet get(LLVMContext &C, ArrayRef<AttributeWithIndex> Attrs);
+
   explicit AttributeSet(AttributeSetImpl *LI) : AttrList(LI) {}
 public:
   AttributeSet() : AttrList(0) {}
@@ -221,7 +226,6 @@ public:
   //===--------------------------------------------------------------------===//
 
   /// \brief Return an AttributeSet with the specified parameters in it.
-  static AttributeSet get(LLVMContext &C, ArrayRef<AttributeWithIndex> Attrs);
   static AttributeSet get(LLVMContext &C, ArrayRef<AttributeSet> Attrs);
   static AttributeSet get(LLVMContext &C, unsigned Idx,
                           ArrayRef<Attribute::AttrKind> Kind);