@@ -27,9 +27,9 @@ class VFABIParserTest : public ::testing::Test {
27
27
<< Err.getMessage () << " \n " ;
28
28
Type *Ty = parseType (SFunTy, Err, *(M.get ()));
29
29
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 " ;
33
33
// Reset the VFInfo
34
34
Info = VFInfo ();
35
35
ScalarFuncParametersNum = 0 ;
@@ -135,8 +135,8 @@ TEST_F(VFABIParserTest, OnlyValidNames) {
135
135
}
136
136
137
137
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)" ));
140
140
EXPECT_TRUE (matchScalarParamNum ()) << " Different number of Scalar parameters" ;
141
141
EXPECT_EQ (VecFuncParameters.size (), (unsigned )5 );
142
142
EXPECT_EQ (VecFuncParameters[0 ], VFParameter ({0 , VFParamKind::Vector}));
0 commit comments