[llvm] [X86] Construct SmallVector with ArrayRef (NFC) (PR #133860)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 31 22:29:53 PDT 2025
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/133860
None
>From 340fc7284a39d5b8cb0cee6c14c3eb5e27949d2f Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Mon, 31 Mar 2025 22:24:06 -0700
Subject: [PATCH] [X86] Construct SmallVector with ArrayRef (NFC)
---
llvm/lib/Target/X86/X86ISelLowering.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index 76de7e888d985..95ff615457985 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -9330,7 +9330,7 @@ X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
// See if we can use a vector load to get all of the elements.
{
- SmallVector<SDValue, 64> Ops(Op->op_begin(), Op->op_begin() + NumElems);
+ SmallVector<SDValue, 64> Ops(Op->ops().take_front(NumElems));
if (SDValue LD =
EltsFromConsecutiveLoads(VT, Ops, dl, DAG, Subtarget, false))
return LD;
@@ -23207,7 +23207,7 @@ static SDValue EmitTest(SDValue Op, X86::CondCode X86CC, const SDLoc &dl,
DAG.getConstant(0, dl, Op.getValueType()));
}
SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
- SmallVector<SDValue, 4> Ops(Op->op_begin(), Op->op_begin() + NumOperands);
+ SmallVector<SDValue, 4> Ops(Op->ops().take_front(NumOperands));
SDValue New = DAG.getNode(Opcode, dl, VTs, Ops);
DAG.ReplaceAllUsesOfValueWith(SDValue(Op.getNode(), 0), New);
@@ -32896,7 +32896,7 @@ static SDValue ExtendToType(SDValue InOp, MVT NVT, SelectionDAG &DAG,
EVT EltVT = InOp.getOperand(0).getValueType();
SDValue FillVal =
FillWithZeroes ? DAG.getConstant(0, dl, EltVT) : DAG.getUNDEF(EltVT);
- SmallVector<SDValue, 16> Ops(InOp->op_begin(), InOp->op_end());
+ SmallVector<SDValue, 16> Ops(InOp->ops());
Ops.append(WidenNumElts - InNumElts, FillVal);
return DAG.getBuildVector(NVT, dl, Ops);
}
More information about the llvm-commits
mailing list