diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-07-17 17:00:11 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-07-17 17:00:11 +0000 |
commit | de39671ebb1151b15bb7f3703fdc78061c68763e (patch) | |
tree | db596af73a39ac974fcafd41cdd852dd3f3eba5a /lib | |
parent | 5d2fada44ce77c6db15173a8107bf253c2293170 (diff) | |
download | external_llvm-de39671ebb1151b15bb7f3703fdc78061c68763e.zip external_llvm-de39671ebb1151b15bb7f3703fdc78061c68763e.tar.gz external_llvm-de39671ebb1151b15bb7f3703fdc78061c68763e.tar.bz2 |
Remove unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160372 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp b/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp index af90e1d..22a0350 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp @@ -588,7 +588,6 @@ SDValue DAGTypeLegalizer::PromoteIntRes_TRUNCATE(SDNode *N) { unsigned NumElts = InVT.getVectorNumElements(); assert(NumElts == NVT.getVectorNumElements() && "Dst and Src must have the same number of elements"); - EVT EltVT = InVT.getScalarType(); assert(isPowerOf2_32(NumElts) && "Promoted vector type must be a power of two"); |