Get rid of unused variable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60015 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2008-11-25 08:13:20 +00:00
parent c0062fb755
commit 7ebfea4175

View File

@ -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);