diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-01-13 21:53:12 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-01-13 21:53:12 +0000 |
commit | 888fa8680cdd09f0b196c853b4982ddb3a5682c9 (patch) | |
tree | f993567ec0b978a0c54f103c774c8eea3fd74766 | |
parent | 897d4c6fe954709a9325fc29171663962595dc6d (diff) | |
download | bcm5719-llvm-888fa8680cdd09f0b196c853b4982ddb3a5682c9.tar.gz bcm5719-llvm-888fa8680cdd09f0b196c853b4982ddb3a5682c9.zip |
Fix unused variable warning. NFCI.
llvm-svn: 351025
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 104b8d00a86..b3785359f81 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(); |