mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
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
This commit is contained in:
parent
7d38c109aa
commit
c83f6212a7
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user