Skip to content

Commit 31250ab

Browse files
committed
Formatting
1 parent bf228bb commit 31250ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18678,7 +18678,8 @@ SDValue DAGCombiner::visitFDIV(SDNode *N) {
1867818678
if (SDValue RV = buildRsqrtEstimate(N1.getOperand(0)))
1867918679
return DAG.getNode(ISD::FMUL, DL, VT, N0, RV);
1868018680
} else if (N1.getOpcode() == ISD::FP_EXTEND &&
18681-
N1.getOperand(0).getOpcode() == ISD::FSQRT && N1AllowReciprocal) {
18681+
N1.getOperand(0).getOpcode() == ISD::FSQRT &&
18682+
N1AllowReciprocal) {
1868218683
if (SDValue RV = buildRsqrtEstimate(N1.getOperand(0).getOperand(0))) {
1868318684
RV = DAG.getNode(ISD::FP_EXTEND, SDLoc(N1), VT, RV);
1868418685
AddToWorklist(RV.getNode());

0 commit comments

Comments
 (0)