Small formating nit in DAGCombiner. NFC
authorAmaury Séchet <deadalnix@gmail.com>
Mon, 26 Sep 2022 13:36:01 +0000 (13:36 +0000)
committerAmaury Séchet <deadalnix@gmail.com>
Mon, 26 Sep 2022 13:36:11 +0000 (13:36 +0000)
llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

index dbaf954..7b7ced4 100644 (file)
@@ -23944,7 +23944,8 @@ SDValue DAGCombiner::SimplifyVBinOp(SDNode *N, const SDLoc &DL) {
 
 SDValue DAGCombiner::SimplifySelect(const SDLoc &DL, SDValue N0, SDValue N1,
                                     SDValue N2) {
-  assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
+  assert(N0.getOpcode() == ISD::SETCC &&
+         "First argument must be a SetCC node!");
 
   SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
                                  cast<CondCodeSDNode>(N0.getOperand(2))->get());