Skip to content

Commit 672fb58

Browse files
committed
[RISCV] Remove extra semicolons. NFC
1 parent fe0ec2c commit 672fb58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/RISCV/RISCVISelLowering.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -12769,14 +12769,14 @@ static bool narrowIndex(SDValue &N, ISD::MemIndexType IndexType, SelectionDAG &D
1276912769
SDValue N0 = N.getOperand(0);
1277012770
if (N0.getOpcode() != ISD::ZERO_EXTEND &&
1277112771
N0.getOpcode() != RISCVISD::VZEXT_VL)
12772-
return false;;
12772+
return false;
1277312773
if (!N0->hasOneUse())
12774-
return false;;
12774+
return false;
1277512775

1277612776
APInt ShAmt;
1277712777
SDValue N1 = N.getOperand(1);
1277812778
if (!ISD::isConstantSplatVector(N1.getNode(), ShAmt))
12779-
return false;;
12779+
return false;
1278012780

1278112781
SDValue Src = N0.getOperand(0);
1278212782
EVT SrcVT = Src.getValueType();

0 commit comments

Comments
 (0)