Skip to content

Commit 69ddef7

Browse files
committed
fix bracket in isSplat
1 parent 7274170 commit 69ddef7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/RISCV/RISCVISelLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13616,8 +13616,8 @@ struct NodeExtensionHelper {
1361613616

1361713617
/// Check if this instance represents a splat.
1361813618
bool isSplat() const {
13619-
return (OrigOperand.getOpcode() == RISCVISD::VMV_V_X_VL ||
13620-
OrigOperand.getOpcode() == ISD::SPLAT_VECTOR);
13619+
return OrigOperand.getOpcode() == RISCVISD::VMV_V_X_VL ||
13620+
OrigOperand.getOpcode() == ISD::SPLAT_VECTOR;
1362113621
}
1362213622

1362313623
/// Get the extended opcode.

0 commit comments

Comments
 (0)