Removing an unused variable that was missed with the refactoring in r310272; NFC.

llvm-svn: 310285
This commit is contained in:
Aaron Ballman 2017-08-07 19:26:17 +00:00
parent d70ea7fed0
commit 428f0fe910
1 changed files with 0 additions and 3 deletions

View File

@ -120,9 +120,6 @@ Instruction *InstCombiner::OptAndOp(BinaryOperator *Op,
ConstantInt *AndRHS, ConstantInt *AndRHS,
BinaryOperator &TheAnd) { BinaryOperator &TheAnd) {
Value *X = Op->getOperand(0); Value *X = Op->getOperand(0);
Constant *Together = nullptr;
if (!Op->isShift())
Together = ConstantExpr::getAnd(AndRHS, OpRHS);
switch (Op->getOpcode()) { switch (Op->getOpcode()) {
default: break; default: break;