[llvm] 17eb12f - [X86] Remove unused variable. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 6 22:56:32 PST 2019


Author: Craig Topper
Date: 2019-11-06T22:53:48-08:00
New Revision: 17eb12fa6d99b2e963d4dff15c3790a5fda8549e

URL: https://github.com/llvm/llvm-project/commit/17eb12fa6d99b2e963d4dff15c3790a5fda8549e
DIFF: https://github.com/llvm/llvm-project/commit/17eb12fa6d99b2e963d4dff15c3790a5fda8549e.diff

LOG: [X86] Remove unused variable. 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 718431aac510..2d144ba02579 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -40763,7 +40763,6 @@ static SDValue combineStore(SDNode *N, SelectionDAG &DAG,
       cast<LoadSDNode>(St->getValue())->isSimple() &&
       St->getChain().hasOneUse() && St->isSimple()) {
     LoadSDNode *Ld = cast<LoadSDNode>(St->getValue().getNode());
-    SmallVector<SDValue, 8> Ops;
 
     if (!ISD::isNormalLoad(Ld))
       return SDValue();


        


More information about the llvm-commits mailing list