diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-01-27 03:39:10 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-01-27 03:39:10 +0000 |
commit | c83f6212a79af38f97bc78c44429c1ea3f3995cd (patch) | |
tree | 470de9d52cc46253a687a261c55bc37c90c9d84b /unittests/IR | |
parent | 7d38c109aab8654e63e9071c7d948661f6b58433 (diff) |
Fix test to not use the AttributeSet's AttributeWithIndex creation method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173608 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/IR')
-rw-r--r-- | unittests/IR/AttributesTest.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/unittests/IR/AttributesTest.cpp b/unittests/IR/AttributesTest.cpp index 627e10f474..2368bdf94d 100644 --- a/unittests/IR/AttributesTest.cpp +++ b/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); } |