Remove dead variable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92196 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling
2009-12-28 02:04:53 +00:00
parent cc690b694a
commit 53df23cff4

View File

@@ -748,9 +748,7 @@ LowerSTORE(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
case ISD::UNINDEXED: { case ISD::UNINDEXED: {
// The vector type we really want to load from the 16-byte chunk. // The vector type we really want to load from the 16-byte chunk.
EVT vecVT = EVT::getVectorVT(*DAG.getContext(), EVT vecVT = EVT::getVectorVT(*DAG.getContext(),
VT, (128 / VT.getSizeInBits())), VT, (128 / VT.getSizeInBits()));
stVecVT = EVT::getVectorVT(*DAG.getContext(),
StVT, (128 / StVT.getSizeInBits()));
SDValue alignLoadVec; SDValue alignLoadVec;
SDValue basePtr = SN->getBasePtr(); SDValue basePtr = SN->getBasePtr();
@@ -2622,8 +2620,6 @@ static SDValue LowerSIGN_EXTEND(SDValue Op, SelectionDAG &DAG)
// Type to extend to // Type to extend to
MVT OpVT = Op.getValueType().getSimpleVT(); MVT OpVT = Op.getValueType().getSimpleVT();
EVT VecVT = EVT::getVectorVT(*DAG.getContext(),
OpVT, (128 / OpVT.getSizeInBits()));
// Type to extend from // Type to extend from
SDValue Op0 = Op.getOperand(0); SDValue Op0 = Op.getOperand(0);