@@ -1465,8 +1465,8 @@ const CIRGenFunctionInfo &CIRGenTypes::arrangeCXXMethodCall(
1465
1465
1466
1466
auto info = proto->getExtInfo ();
1467
1467
return arrangeCIRFunctionInfo (GetReturnType (proto->getReturnType ()),
1468
- cir::FnInfoOpts::IsInstanceMethod, argTypes, info,
1469
- paramInfos, required);
1468
+ cir::FnInfoOpts::IsInstanceMethod, argTypes,
1469
+ info, paramInfos, required);
1470
1470
}
1471
1471
1472
1472
// / Figure out the rules for calling a function with the given formal type using
@@ -1544,9 +1544,9 @@ CIRGenTypes::arrangeFunctionDeclaration(const FunctionDecl *FD) {
1544
1544
// When declaring a function without a prototype, always use a non-variadic
1545
1545
// type.
1546
1546
if (CanQual<FunctionNoProtoType> noProto = FTy.getAs <FunctionNoProtoType>()) {
1547
- return arrangeCIRFunctionInfo (noProto->getReturnType (), cir::FnInfoOpts::None,
1548
- std::nullopt, noProto-> getExtInfo (), {} ,
1549
- RequiredArgs::All);
1547
+ return arrangeCIRFunctionInfo (noProto->getReturnType (),
1548
+ cir::FnInfoOpts::None, std::nullopt ,
1549
+ noProto-> getExtInfo (), {}, RequiredArgs::All);
1550
1550
}
1551
1551
1552
1552
return arrangeFreeFunctionType (FTy.castAs <FunctionProtoType>());
0 commit comments