From: Bill Wendling Date: Tue, 25 Nov 2008 08:13:20 +0000 (+0000) Subject: Get rid of unused variable. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7ebfea41755c1f7b45fe5cad005ad2ea701c508e;p=oota-llvm.git Get rid of unused variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60015 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 5a6332c1cef..563f84b4c01 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -4183,7 +4183,6 @@ SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) { SDValue RHS = LegalizeOp(Node->getOperand(1)); SDValue Sum = DAG.getNode(ISD::ADD, LHS.getValueType(), LHS, RHS); - MVT SType = Node->getValueType(0); MVT OType = Node->getValueType(1); SDValue Zero = DAG.getConstant(0, OType);