Skip to content

Commit 7e4f22b

Browse files
Clang-format issue.
1 parent cd99514 commit 7e4f22b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

llvm/unittests/Analysis/VectorFunctionABITest.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ class VFABIParserTest : public ::testing::Test {
2727
<< Err.getMessage() << "\n";
2828
Type *Ty = parseType(SFunTy, Err, *(M.get()));
2929
ScalarFTy = dyn_cast<FunctionType>(Ty);
30-
EXPECT_NE(ScalarFTy, nullptr) << "Invalid function type string: " << SFunTy
31-
<< "\n"
32-
<< Err.getMessage() << "\n";
30+
EXPECT_NE(ScalarFTy, nullptr)
31+
<< "Invalid function type string: " << SFunTy << "\n"
32+
<< Err.getMessage() << "\n";
3333
// Reset the VFInfo
3434
Info = VFInfo();
3535
ScalarFuncParametersNum = 0;
@@ -135,8 +135,8 @@ TEST_F(VFABIParserTest, OnlyValidNames) {
135135
}
136136

137137
TEST_F(VFABIParserTest, ParamListParsing) {
138-
EXPECT_TRUE(invokeParser("_ZGVnN2vl16Ls32R3l_foo",
139-
"void(i32, i32, i32, ptr, i32)"));
138+
EXPECT_TRUE(
139+
invokeParser("_ZGVnN2vl16Ls32R3l_foo", "void(i32, i32, i32, ptr, i32)"));
140140
EXPECT_TRUE(matchScalarParamNum()) << "Different number of Scalar parameters";
141141
EXPECT_EQ(VecFuncParameters.size(), (unsigned)5);
142142
EXPECT_EQ(VecFuncParameters[0], VFParameter({0, VFParamKind::Vector}));

0 commit comments

Comments
 (0)