1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Fix test to not use the AttributeSet's AttributeWithIndex creation method.

llvm-svn: 173608
This commit is contained in:
Bill Wendling 2013-01-27 03:39:10 +00:00
parent d8d5c37332
commit 761ddf3dd9

View File

@ -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);
}