Skip to content

Commit c8ce070

Browse files
committed
Formatting
1 parent 22ff3fd commit c8ce070

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/X86/X86ISelLowering.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54169,7 +54169,8 @@ static SDValue combineFaddCFmul(SDNode *N, SelectionDAG &DAG,
5416954169
Bits.getConstant() == AI;
5417054170
};
5417154171

54172-
if (N->getOpcode() != ISD::FADD || !Subtarget.hasFP16() || !N->getFlags().hasAllowContract())
54172+
if (N->getOpcode() != ISD::FADD || !Subtarget.hasFP16() ||
54173+
!N->getFlags().hasAllowContract())
5417354174
return SDValue();
5417454175

5417554176
EVT VT = N->getValueType(0);
@@ -54180,8 +54181,7 @@ static SDValue combineFaddCFmul(SDNode *N, SelectionDAG &DAG,
5418054181
SDValue RHS = N->getOperand(1);
5418154182
bool IsConj;
5418254183
SDValue FAddOp1, MulOp0, MulOp1;
54183-
auto GetCFmulFrom = [&MulOp0, &MulOp1, &IsConj,
54184-
&IsVectorAllNegativeZero,
54184+
auto GetCFmulFrom = [&MulOp0, &MulOp1, &IsConj, &IsVectorAllNegativeZero,
5418554185
&HasNoSignedZero](SDValue N) -> bool {
5418654186
if (!N.hasOneUse() || N.getOpcode() != ISD::BITCAST)
5418754187
return false;

0 commit comments

Comments
 (0)