Skip to content

Commit 813a2d1

Browse files
committed
fix formatting on irrelevant lines
1 parent 346cc9b commit 813a2d1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6756,12 +6756,12 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
67566756
assert(N1.getValueType() == N2.getValueType() &&
67576757
N1.getValueType() == VT && "Binary operator types must match");
67586758
break;
6759-
case ISD::FADD:
6760-
case ISD::FSUB:
6761-
case ISD::FMUL:
6762-
case ISD::FDIV:
6763-
case ISD::FREM:
6764-
assert(VT.isFloatingPoint() && "This operator only applies to FP types!");
6759+
case ISD::FADD:
6760+
case ISD::FSUB:
6761+
case ISD::FMUL:
6762+
case ISD::FDIV:
6763+
case ISD::FREM:
6764+
assert(VT.isFloatingPoint() && "This operator only applies to FP types!");
67656765
assert(N1.getValueType() == N2.getValueType() &&
67666766
N1.getValueType() == VT && "Binary operator types must match!");
67676767
if (SDValue V = simplifyFPBinop(Opcode, N1, N2, Flags))

0 commit comments

Comments
 (0)