aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2012-06-02 01:03:42 +0000
committerChris Lattner <sabre@nondot.org>2012-06-02 01:03:42 +0000
commit00edc3dea28c158c5e2b6d4fd3d2da13ee933e2a (patch)
tree00490008cc3a04ba389bd00b15de7212244a82b7
parentbdd26783b85128d32aa8faa0b24b77f834d97b25 (diff)
remove an unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157872 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/Mips/MipsISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Mips/MipsISelLowering.cpp b/lib/Target/Mips/MipsISelLowering.cpp
index 8cd602ca64..6b39b90f05 100644
--- a/lib/Target/Mips/MipsISelLowering.cpp
+++ b/lib/Target/Mips/MipsISelLowering.cpp
@@ -2150,7 +2150,7 @@ SDValue MipsTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
static SDValue CreateStoreLR(unsigned Opc, SelectionDAG &DAG, StoreSDNode *SD,
SDValue Chain, unsigned Offset) {
SDValue BasePtr = SD->getBasePtr(), Ptr, Value = SD->getValue();
- EVT VT = Value.getValueType(), MemVT = SD->getMemoryVT();
+ EVT MemVT = SD->getMemoryVT();
EVT BasePtrVT = BasePtr.getValueType();
DebugLoc DL = SD->getDebugLoc();
SDVTList VTList = DAG.getVTList(MVT::Other);