Skip to content

Commit 6df5335

Browse files
committed
[RISCV] Fix formatting
1 parent d84396c commit 6df5335

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

llvm/lib/Target/RISCV/RISCVISelLowering.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17412,10 +17412,9 @@ static SDValue combineSHL(SDNode *N, TargetLowering::DAGCombinerInfo &DCI,
1741217412
default:
1741317413
llvm_unreachable("Expected SHL");
1741417414
}
17415-
return DAG.getNode(
17416-
Opcode, DL, VT, NarrowOp,
17417-
DAG.getConstant(1ULL << ShAmtInt, SDLoc(RHS), NarrowVT),
17418-
Passthru, Mask, VL);
17415+
return DAG.getNode(Opcode, DL, VT, NarrowOp,
17416+
DAG.getConstant(1ULL << ShAmtInt, SDLoc(RHS), NarrowVT),
17417+
Passthru, Mask, VL);
1741917418
}
1742017419

1742117420
SDValue RISCVTargetLowering::PerformDAGCombine(SDNode *N,

0 commit comments

Comments
 (0)