@@ -2031,7 +2031,7 @@ void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
2031
2031
2032
2032
// Cast the source to the storage type and shift it into place.
2033
2033
SrcVal = Builder.CreateIntCast(SrcVal, Ptr.getElementType(),
2034
- /*IsSigned =*/false);
2034
+ /*isSigned =*/false);
2035
2035
llvm::Value *MaskedVal = SrcVal;
2036
2036
2037
2037
// See if there are other bits in the bitfield's storage we'll need to load
@@ -2611,7 +2611,7 @@ LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
2611
2611
// some reason; most likely, because it's in an outer function.
2612
2612
} else if (VD->isStaticLocal()) {
2613
2613
addr = Address(CGM.getOrCreateStaticVarDecl(
2614
- *VD, CGM.getLLVMLinkageVarDefinition(VD, /*isConstant =*/false)),
2614
+ *VD, CGM.getLLVMLinkageVarDefinition(VD, /*IsConstant =*/false)),
2615
2615
getContext().getDeclAlign(VD));
2616
2616
2617
2617
// No other cases for now.
@@ -3749,7 +3749,7 @@ LValue CodeGenFunction::EmitOMPArraySectionExpr(const OMPArraySectionExpr *E,
3749
3749
Idx = Builder.CreateNSWMul(Idx, NumElements);
3750
3750
EltPtr = emitArraySubscriptGEP(*this, Base, Idx, VLA->getElementType(),
3751
3751
!getLangOpts().isSignedOverflowDefined(),
3752
- /*SignedIndices =*/false, E->getExprLoc());
3752
+ /*signedIndices =*/false, E->getExprLoc());
3753
3753
} else if (const Expr *Array = isSimpleArrayDecayOperand(E->getBase())) {
3754
3754
// If this is A[i] where A is an array, the frontend will have decayed the
3755
3755
// base to be a ArrayToPointerDecay implicit cast. While correct, it is
@@ -3769,7 +3769,7 @@ LValue CodeGenFunction::EmitOMPArraySectionExpr(const OMPArraySectionExpr *E,
3769
3769
EltPtr = emitArraySubscriptGEP(
3770
3770
*this, ArrayLV.getAddress(), {CGM.getSize(CharUnits::Zero()), Idx},
3771
3771
ResultExprTy, !getLangOpts().isSignedOverflowDefined(),
3772
- /*SignedIndices =*/false, E->getExprLoc());
3772
+ /*signedIndices =*/false, E->getExprLoc());
3773
3773
BaseInfo = ArrayLV.getBaseInfo();
3774
3774
TBAAInfo = CGM.getTBAAInfoForSubobject(ArrayLV, ResultExprTy);
3775
3775
} else {
@@ -3778,7 +3778,7 @@ LValue CodeGenFunction::EmitOMPArraySectionExpr(const OMPArraySectionExpr *E,
3778
3778
IsLowerBound);
3779
3779
EltPtr = emitArraySubscriptGEP(*this, Base, Idx, ResultExprTy,
3780
3780
!getLangOpts().isSignedOverflowDefined(),
3781
- /*SignedIndices =*/false, E->getExprLoc());
3781
+ /*signedIndices =*/false, E->getExprLoc());
3782
3782
}
3783
3783
3784
3784
return MakeAddrLValue(EltPtr, ResultExprTy, BaseInfo, TBAAInfo);
@@ -4867,7 +4867,7 @@ RValue CodeGenFunction::EmitCall(QualType CalleeType, const CGCallee &OrigCallee
4867
4867
E->getDirectCallee(), /*ParamsToSkip*/ 0, Order);
4868
4868
4869
4869
const CGFunctionInfo &FnInfo = CGM.getTypes().arrangeFreeFunctionCall(
4870
- Args, FnType, /*isChainCall =*/Chain);
4870
+ Args, FnType, /*ChainCall =*/Chain);
4871
4871
4872
4872
// C99 6.5.2.2p6:
4873
4873
// If the expression that denotes the called function has a type
0 commit comments