Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:NewInst

1303     Value *NewInst = nullptr;
1310 NewInst = Builder->CreateFMul(Y, Op1);
1311 if (Instruction *RI = dyn_cast<Instruction>(NewInst)) {
1316 SimpR = BinaryOperator::CreateFDiv(X, NewInst);
1322 NewInst = Builder->CreateFMul(Op0, Y);
1323 if (Instruction *RI = dyn_cast<Instruction>(NewInst)) {
1328 SimpR = BinaryOperator::CreateFDiv(NewInst, X);
1332 if (NewInst) {
1333 if (Instruction *T = dyn_cast<Instruction>(NewInst))