Fix test to not use the AttributeSet's AttributeWithIndex creation method.
authorBill Wendling <isanbard@gmail.com>
Sun, 27 Jan 2013 03:39:10 +0000 (03:39 +0000)
committerBill Wendling <isanbard@gmail.com>
Sun, 27 Jan 2013 03:39:10 +0000 (03:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173608 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/IR/AttributesTest.cpp

index 627e10f4740df6c62acd53c077b7474ab7beccbc..2368bdf94dc43e6fa40f5812da78425ee7a7622b 100644 (file)
@@ -21,13 +21,13 @@ TEST(Attributes, Uniquing) {
   Attribute AttrB = Attribute::get(C, Attribute::AlwaysInline);
   EXPECT_EQ(AttrA, AttrB);
 
   Attribute AttrB = Attribute::get(C, Attribute::AlwaysInline);
   EXPECT_EQ(AttrA, AttrB);
 
-  AttributeWithIndex AWIs[] = {
-    AttributeWithIndex::get(C, 1, Attribute::ZExt),
-    AttributeWithIndex::get(C, 2, Attribute::SExt)
+  AttributeSet ASs[] = {
+    AttributeSet::get(C, 1, Attribute::ZExt),
+    AttributeSet::get(C, 2, Attribute::SExt)
   };
 
   };
 
-  AttributeSet SetA = AttributeSet::get(C, AWIs);
-  AttributeSet SetB = AttributeSet::get(C, AWIs);
+  AttributeSet SetA = AttributeSet::get(C, ASs);
+  AttributeSet SetB = AttributeSet::get(C, ASs);
   EXPECT_EQ(SetA, SetB);
 }
 
   EXPECT_EQ(SetA, SetB);
 }