[llvm] 69d1e80 - [X86] combineAndnp - remove unused variable. NFC.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Sun Jul 24 03:32:59 PDT 2022
Author: Simon Pilgrim
Date: 2022-07-24T11:32:44+01:00
New Revision: 69d1e805ce5fa370009e00e8ce176c1e53d3448e
URL: https://github.com/llvm/llvm-project/commit/69d1e805ce5fa370009e00e8ce176c1e53d3448e
DIFF: https://github.com/llvm/llvm-project/commit/69d1e805ce5fa370009e00e8ce176c1e53d3448e.diff
LOG: [X86] combineAndnp - 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 b6f7b9242697..5a4533c4bac4 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -51134,7 +51134,6 @@ static SDValue combineAndnp(SDNode *N, SelectionDAG &DAG,
SDValue N0 = N->getOperand(0);
SDValue N1 = N->getOperand(1);
MVT VT = N->getSimpleValueType(0);
- MVT SVT = VT.getScalarType();
int NumElts = VT.getVectorNumElements();
unsigned EltSizeInBits = VT.getScalarSizeInBits();
More information about the llvm-commits
mailing list