From: Simon Pilgrim Date: Sun, 13 Jan 2019 21:53:12 +0000 (+0000) Subject: Fix unused variable warning. NFCI. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=888fa8680cdd09f0b196c853b4982ddb3a5682c9;p=platform%2Fupstream%2Fllvm.git Fix unused variable warning. NFCI. llvm-svn: 351025 --- diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 104b8d0..b378535 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -2772,7 +2772,6 @@ SDValue DAGCombiner::visitSUB(SDNode *N) { } SDValue DAGCombiner::visitSUBSAT(SDNode *N) { - unsigned Opcode = N->getOpcode(); SDValue N0 = N->getOperand(0); SDValue N1 = N->getOperand(1); EVT VT = N0.getValueType();