[llvm] bea1c90 - [NFC] Fix line width to fit in 80 columns (#110605)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 1 06:49:48 PDT 2024
Author: Rahul Joshi
Date: 2024-10-01T06:49:45-07:00
New Revision: bea1c9026a0dbab3626b65049c339d0459d92b6f
URL: https://github.com/llvm/llvm-project/commit/bea1c9026a0dbab3626b65049c339d0459d92b6f
DIFF: https://github.com/llvm/llvm-project/commit/bea1c9026a0dbab3626b65049c339d0459d92b6f.diff
LOG: [NFC] Fix line width to fit in 80 columns (#110605)
Added:
Modified:
llvm/unittests/IR/AttributesTest.cpp
Removed:
################################################################################
diff --git a/llvm/unittests/IR/AttributesTest.cpp b/llvm/unittests/IR/AttributesTest.cpp
index da72fa14510cbe..3fd161a54b17e0 100644
--- a/llvm/unittests/IR/AttributesTest.cpp
+++ b/llvm/unittests/IR/AttributesTest.cpp
@@ -172,8 +172,9 @@ TEST(Attributes, EmptyGet) {
TEST(Attributes, OverflowGet) {
LLVMContext C;
- std::pair<unsigned, Attribute> Attrs[] = { { AttributeList::ReturnIndex, Attribute::get(C, Attribute::SExt) },
- { AttributeList::FunctionIndex, Attribute::get(C, Attribute::ReadOnly) } };
+ std::pair<unsigned, Attribute> Attrs[] = {
+ {AttributeList::ReturnIndex, Attribute::get(C, Attribute::SExt)},
+ {AttributeList::FunctionIndex, Attribute::get(C, Attribute::ReadOnly)}};
AttributeList AL = AttributeList::get(C, Attrs);
EXPECT_EQ(2U, AL.getNumAttrSets());
}
More information about the llvm-commits
mailing list