Skip to content

Commit 9d24f94

Browse files
committed
[X86] combineConcatVectorOps - remove duplicate DAG.getContext() call. NFC.
1 parent f09fd94 commit 9d24f94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/X86/X86ISelLowering.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57582,7 +57582,7 @@ static SDValue combineConcatVectorOps(const SDLoc &DL, MVT VT,
5758257582
EVT SubVT = peekThroughBitcasts(Subs[0]).getValueType();
5758357583
if (SubVT.isSimple() && SubVT.isVector()) {
5758457584
EVT ConcatVT =
57585-
EVT::getVectorVT(*DAG.getContext(), SubVT.getScalarType(),
57585+
EVT::getVectorVT(Ctx, SubVT.getScalarType(),
5758657586
SubVT.getVectorElementCount() * Subs.size());
5758757587
for (SDValue &Sub : Subs)
5758857588
Sub = DAG.getBitcast(SubVT, Sub);

0 commit comments

Comments
 (0)