Skip to content

Commit 69bcf1d

Browse files
committed
fixup! clang-format
1 parent ed4c019 commit 69bcf1d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3585,9 +3585,11 @@ bool RISCVDAGToDAGISel::selectVSplatSimm5Plus1(SDValue N, SDValue &SplatVal) {
35853585
bool RISCVDAGToDAGISel::selectVSplatSimm5Plus1NonZero(SDValue N,
35863586
SDValue &SplatVal) {
35873587
return selectVSplatImmHelper(
3588-
N, SplatVal, *CurDAG, *Subtarget, [](int64_t Imm) {
3588+
N, SplatVal, *CurDAG, *Subtarget,
3589+
[](int64_t Imm) {
35893590
return Imm != 0 && ((isInt<5>(Imm) && Imm != -16) || Imm == 16);
3590-
}, /*Decrement=*/true);
3591+
},
3592+
/*Decrement=*/true);
35913593
}
35923594

35933595
bool RISCVDAGToDAGISel::selectVSplatUimm(SDValue N, unsigned Bits,

0 commit comments

Comments
 (0)