@@ -8348,7 +8348,8 @@ Instruction *InstCombiner::visitSelectInst(SelectInst &SI) {
8348
8348
if (AddOp != TI)
8349
8349
std::swap(NewTrueOp, NewFalseOp);
8350
8350
Instruction *NewSel =
8351
- SelectInst::Create(CondVal, NewTrueOp,NewFalseOp,SI.getName()+".p");
8351
+ SelectInst::Create(CondVal, NewTrueOp,
8352
+ NewFalseOp, SI.getName() + ".p");
8352
8353
8353
8354
NewSel = InsertNewInstBefore(NewSel, SI);
8354
8355
return BinaryOperator::createAdd(SubOp->getOperand(0), NewSel);
@@ -8374,7 +8375,8 @@ Instruction *InstCombiner::visitSelectInst(SelectInst &SI) {
8374
8375
if (OpToFold) {
8375
8376
Constant *C = GetSelectFoldableConstant(TVI);
8376
8377
Instruction *NewSel =
8377
- SelectInst::Create(SI.getCondition(), TVI->getOperand(2-OpToFold), C);
8378
+ SelectInst::Create(SI.getCondition(),
8379
+ TVI->getOperand(2-OpToFold), C);
8378
8380
InsertNewInstBefore(NewSel, SI);
8379
8381
NewSel->takeName(TVI);
8380
8382
if (BinaryOperator *BO = dyn_cast<BinaryOperator>(TVI))
@@ -8399,7 +8401,8 @@ Instruction *InstCombiner::visitSelectInst(SelectInst &SI) {
8399
8401
if (OpToFold) {
8400
8402
Constant *C = GetSelectFoldableConstant(FVI);
8401
8403
Instruction *NewSel =
8402
- SelectInst::Create(SI.getCondition(), C, FVI->getOperand(2-OpToFold));
8404
+ SelectInst::Create(SI.getCondition(), C,
8405
+ FVI->getOperand(2-OpToFold));
8403
8406
InsertNewInstBefore(NewSel, SI);
8404
8407
NewSel->takeName(FVI);
8405
8408
if (BinaryOperator *BO = dyn_cast<BinaryOperator>(FVI))
@@ -8757,7 +8760,8 @@ Instruction *InstCombiner::visitCallInst(CallInst &CI) {
8757
8760
}
8758
8761
8759
8762
// Insert this value into the result vector.
8760
- Result = InsertElementInst::Create(Result, ExtractedElts[Idx], i, "tmp");
8763
+ Result = InsertElementInst::Create(Result, ExtractedElts[Idx],
8764
+ i, "tmp");
8761
8765
InsertNewInstBefore(cast<Instruction>(Result), CI);
8762
8766
}
8763
8767
return CastInst::create(Instruction::BitCast, Result, CI.getType());
@@ -9090,7 +9094,8 @@ bool InstCombiner::transformConstExprCastCall(CallSite CS) {
9090
9094
Instruction *NC;
9091
9095
if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
9092
9096
NC = InvokeInst::Create(Callee, II->getNormalDest(), II->getUnwindDest(),
9093
- Args.begin(), Args.end(), Caller->getName(), Caller);
9097
+ Args.begin(), Args.end(),
9098
+ Caller->getName(), Caller);
9094
9099
cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
9095
9100
cast<InvokeInst>(NC)->setParamAttrs(NewCallerPAL);
9096
9101
} else {
@@ -9331,15 +9336,17 @@ Instruction *InstCombiner::FoldPHIArgBinOpIntoPHI(PHINode &PN) {
9331
9336
Value *InRHS = FirstInst->getOperand(1);
9332
9337
PHINode *NewLHS = 0, *NewRHS = 0;
9333
9338
if (LHSVal == 0) {
9334
- NewLHS = PHINode::Create(LHSType, FirstInst->getOperand(0)->getName()+".pn");
9339
+ NewLHS = PHINode::Create(LHSType,
9340
+ FirstInst->getOperand(0)->getName() + ".pn");
9335
9341
NewLHS->reserveOperandSpace(PN.getNumOperands()/2);
9336
9342
NewLHS->addIncoming(InLHS, PN.getIncomingBlock(0));
9337
9343
InsertNewInstBefore(NewLHS, PN);
9338
9344
LHSVal = NewLHS;
9339
9345
}
9340
9346
9341
9347
if (RHSVal == 0) {
9342
- NewRHS = PHINode::Create(RHSType, FirstInst->getOperand(1)->getName()+".pn");
9348
+ NewRHS = PHINode::Create(RHSType,
9349
+ FirstInst->getOperand(1)->getName() + ".pn");
9343
9350
NewRHS->reserveOperandSpace(PN.getNumOperands()/2);
9344
9351
NewRHS->addIncoming(InRHS, PN.getIncomingBlock(0));
9345
9352
InsertNewInstBefore(NewRHS, PN);
@@ -10864,8 +10871,8 @@ Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) {
10864
10871
cast<PointerType>(I->getOperand(0)->getType())->getAddressSpace();
10865
10872
Value *Ptr = InsertBitCastBefore(I->getOperand(0),
10866
10873
PointerType::get(EI.getType(), AS),EI);
10867
- GetElementPtrInst *GEP =
10868
- GetElementPtrInst::Create(Ptr, EI.getOperand(1), I->getName() + ".gep");
10874
+ GetElementPtrInst *GEP =
10875
+ GetElementPtrInst::Create(Ptr, EI.getOperand(1), I->getName()+ ".gep");
10869
10876
InsertNewInstBefore(GEP, EI);
10870
10877
return new LoadInst(GEP);
10871
10878
}
0 commit comments