Skip to content

Commit cdad7e6

Browse files
committed
fix typo
1 parent 969e300 commit cdad7e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/LoongArch/LoongArchISelLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2607,9 +2607,9 @@ SDValue LoongArchTargetLowering::lowerBUILD_VECTOR(SDValue Op,
26072607
// Use INSERT_VECTOR_ELT operations rather than expand to stores, because
26082608
// using memory operations is much lower.
26092609
//
2610-
// For 256-bit vectors, normally spill into two halves and concatenate.
2610+
// For 256-bit vectors, normally split into two halves and concatenate.
26112611
// Special case: for v8i32/v8f32/v4i64/v4f64, if the upper half has only
2612-
// one non-undef element, skip spilling to avoid a worse result.
2612+
// one non-undef element, skip spliting to avoid a worse result.
26132613
if (ResTy == MVT::v8i32 || ResTy == MVT::v8f32 || ResTy == MVT::v4i64 ||
26142614
ResTy == MVT::v4f64) {
26152615
unsigned NonUndefCount = 0;

0 commit comments

Comments
 (0)