Skip to content

Commit bea1c90

Browse files
authored
[NFC] Fix line width to fit in 80 columns (#110605)
1 parent d6d3d2f commit bea1c90

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

llvm/unittests/IR/AttributesTest.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,9 @@ TEST(Attributes, EmptyGet) {
172172

173173
TEST(Attributes, OverflowGet) {
174174
LLVMContext C;
175-
std::pair<unsigned, Attribute> Attrs[] = { { AttributeList::ReturnIndex, Attribute::get(C, Attribute::SExt) },
176-
{ AttributeList::FunctionIndex, Attribute::get(C, Attribute::ReadOnly) } };
175+
std::pair<unsigned, Attribute> Attrs[] = {
176+
{AttributeList::ReturnIndex, Attribute::get(C, Attribute::SExt)},
177+
{AttributeList::FunctionIndex, Attribute::get(C, Attribute::ReadOnly)}};
177178
AttributeList AL = AttributeList::get(C, Attrs);
178179
EXPECT_EQ(2U, AL.getNumAttrSets());
179180
}

0 commit comments

Comments
 (0)