forked from OSchip/llvm-project
Fix test to not use the AttributeSet's AttributeWithIndex creation method.
llvm-svn: 173608
This commit is contained in:
parent
53e191b2bc
commit
a7a55ee2fc
|
@ -21,13 +21,13 @@ TEST(Attributes, Uniquing) {
|
||||||
Attribute AttrB = Attribute::get(C, Attribute::AlwaysInline);
|
Attribute AttrB = Attribute::get(C, Attribute::AlwaysInline);
|
||||||
EXPECT_EQ(AttrA, AttrB);
|
EXPECT_EQ(AttrA, AttrB);
|
||||||
|
|
||||||
AttributeWithIndex AWIs[] = {
|
AttributeSet ASs[] = {
|
||||||
AttributeWithIndex::get(C, 1, Attribute::ZExt),
|
AttributeSet::get(C, 1, Attribute::ZExt),
|
||||||
AttributeWithIndex::get(C, 2, Attribute::SExt)
|
AttributeSet::get(C, 2, Attribute::SExt)
|
||||||
};
|
};
|
||||||
|
|
||||||
AttributeSet SetA = AttributeSet::get(C, AWIs);
|
AttributeSet SetA = AttributeSet::get(C, ASs);
|
||||||
AttributeSet SetB = AttributeSet::get(C, AWIs);
|
AttributeSet SetB = AttributeSet::get(C, ASs);
|
||||||
EXPECT_EQ(SetA, SetB);
|
EXPECT_EQ(SetA, SetB);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue