1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Get rid of unused variable.

llvm-svn: 60015
This commit is contained in:
Bill Wendling 2008-11-25 08:13:20 +00:00
parent f6dd065808
commit aa0e224ee4

View File

@ -4183,7 +4183,6 @@ SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
SDValue RHS = LegalizeOp(Node->getOperand(1)); SDValue RHS = LegalizeOp(Node->getOperand(1));
SDValue Sum = DAG.getNode(ISD::ADD, LHS.getValueType(), LHS, RHS); SDValue Sum = DAG.getNode(ISD::ADD, LHS.getValueType(), LHS, RHS);
MVT SType = Node->getValueType(0);
MVT OType = Node->getValueType(1); MVT OType = Node->getValueType(1);
SDValue Zero = DAG.getConstant(0, OType); SDValue Zero = DAG.getConstant(0, OType);