[llvm] 9d24f94 - [X86] combineConcatVectorOps - remove duplicate DAG.getContext() call. NFC.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 17 02:38:41 PST 2025


Author: Simon Pilgrim
Date: 2025-02-17T10:38:23Z
New Revision: 9d24f943794420e512512eb9329341355e9289f8

URL: https://github.com/llvm/llvm-project/commit/9d24f943794420e512512eb9329341355e9289f8
DIFF: https://github.com/llvm/llvm-project/commit/9d24f943794420e512512eb9329341355e9289f8.diff

LOG: [X86] combineConcatVectorOps - remove duplicate DAG.getContext() call. NFC.

Added: 
    

Modified: 
    llvm/lib/Target/X86/X86ISelLowering.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index 21b08a4a93fc7..85ad391ade299 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -57582,7 +57582,7 @@ static SDValue combineConcatVectorOps(const SDLoc &DL, MVT VT,
       EVT SubVT = peekThroughBitcasts(Subs[0]).getValueType();
       if (SubVT.isSimple() && SubVT.isVector()) {
         EVT ConcatVT =
-            EVT::getVectorVT(*DAG.getContext(), SubVT.getScalarType(),
+            EVT::getVectorVT(Ctx, SubVT.getScalarType(),
                              SubVT.getVectorElementCount() * Subs.size());
         for (SDValue &Sub : Subs)
           Sub = DAG.getBitcast(SubVT, Sub);


        


More information about the llvm-commits mailing list