diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2017-08-07 19:26:17 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2017-08-07 19:26:17 +0000 |
commit | 428f0fe910454884c6e1119c9e9944f824973e1a (patch) | |
tree | 1c3e0660ca1613ad66897a8c4b305f822ba1e9c2 | |
parent | d70ea7fed04726351f8cb1ae791b2aa9f4422f17 (diff) | |
download | bcm5719-llvm-428f0fe910454884c6e1119c9e9944f824973e1a.tar.gz bcm5719-llvm-428f0fe910454884c6e1119c9e9944f824973e1a.zip |
Removing an unused variable that was missed with the refactoring in r310272; NFC.
llvm-svn: 310285
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp b/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp index db8e6ecb0bf..4279427a8b9 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp @@ -120,9 +120,6 @@ Instruction *InstCombiner::OptAndOp(BinaryOperator *Op, ConstantInt *AndRHS, BinaryOperator &TheAnd) { Value *X = Op->getOperand(0); - Constant *Together = nullptr; - if (!Op->isShift()) - Together = ConstantExpr::getAnd(AndRHS, OpRHS); switch (Op->getOpcode()) { default: break; |