@@ -1274,8 +1274,8 @@ static SCEVUse getUnsignedOverflowLimitForStep(SCEVUse Step,
12741274namespace {
12751275
12761276struct ExtendOpTraitsBase {
1277- typedef SCEVUse (ScalarEvolution:: *GetExtendExprTy)(SCEVUse, Type *,
1278- unsigned);
1277+ typedef SCEVUse (ScalarEvolution::*GetExtendExprTy)(SCEVUse, Type *,
1278+ unsigned);
12791279};
12801280
12811281// Used to make code generic over signed and unsigned overflow.
@@ -2309,8 +2309,8 @@ static bool CollectAddOperandsWithScales(DenseMap<SCEVUse, APInt> &M,
23092309bool ScalarEvolution::willNotOverflow(Instruction::BinaryOps BinOp, bool Signed,
23102310 SCEVUse LHS, SCEVUse RHS,
23112311 const Instruction *CtxI) {
2312- SCEVUse (ScalarEvolution:: *Operation)(SCEVUse, SCEVUse, SCEV::NoWrapFlags,
2313- unsigned);
2312+ SCEVUse (ScalarEvolution::*Operation)(SCEVUse, SCEVUse, SCEV::NoWrapFlags,
2313+ unsigned);
23142314 switch (BinOp) {
23152315 default:
23162316 llvm_unreachable("Unsupported binary op");
@@ -2325,7 +2325,7 @@ bool ScalarEvolution::willNotOverflow(Instruction::BinaryOps BinOp, bool Signed,
23252325 break;
23262326 }
23272327
2328- SCEVUse (ScalarEvolution:: *Extension)(SCEVUse, Type *, unsigned) =
2328+ SCEVUse (ScalarEvolution::*Extension)(SCEVUse, Type *, unsigned) =
23292329 Signed ? &ScalarEvolution::getSignExtendExpr
23302330 : &ScalarEvolution::getZeroExtendExpr;
23312331
0 commit comments