summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2016-05-07 20:19:59 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2016-05-07 20:19:59 +0000
commited39d150f5b21c44b27331b25fa8e55b1794df3c (patch)
treef49a74a8b7f2ece69dd3d50896a53589a83f8b90 /llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
parent553429898e79fc9671cb010cfc41b26b283d8eb1 (diff)
downloadbcm5719-llvm-ed39d150f5b21c44b27331b25fa8e55b1794df3c.tar.gz
bcm5719-llvm-ed39d150f5b21c44b27331b25fa8e55b1794df3c.zip
Fix unused variable warning.
llvm-svn: 268867
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index f1be30cf69d..e2bc0a183a2 100644
--- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -4980,7 +4980,6 @@ SDValue DAGCombiner::visitBSWAP(SDNode *N) {
SDValue DAGCombiner::visitBITREVERSE(SDNode *N) {
SDValue N0 = N->getOperand(0);
- EVT VT = N->getValueType(0);
// fold (bitreverse (bitreverse x)) -> x
if (N0.getOpcode() == ISD::BITREVERSE)
OpenPOWER on IntegriCloud