From a7a55ee2fc2145bc1b19e65f1bcf76525b0ecd7e Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Sun, 27 Jan 2013 03:39:10 +0000 Subject: [PATCH] Fix test to not use the AttributeSet's AttributeWithIndex creation method. llvm-svn: 173608 --- llvm/unittests/IR/AttributesTest.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/llvm/unittests/IR/AttributesTest.cpp b/llvm/unittests/IR/AttributesTest.cpp index 627e10f..2368bdf 100644 --- a/llvm/unittests/IR/AttributesTest.cpp +++ b/llvm/unittests/IR/AttributesTest.cpp @@ -21,13 +21,13 @@ TEST(Attributes, Uniquing) { 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); } -- 2.7.4