[InstCombine] Fix indentation. NFC.

llvm-svn: 256131
This commit is contained in:
Craig Topper 2015-12-21 01:02:28 +00:00
parent f061e9b7b2
commit eafbd57ebc
1 changed files with 2 additions and 2 deletions

View File

@ -1118,8 +1118,8 @@ Instruction *InstCombiner::visitAdd(BinaryOperator &I) {
// (X + signbit) + C could have gotten canonicalized to (X ^ signbit) + C,
// transform them into (X + (signbit ^ C))
if (XorRHS->getValue().isSignBit())
return BinaryOperator::CreateAdd(XorLHS,
ConstantExpr::getXor(XorRHS, CI));
return BinaryOperator::CreateAdd(XorLHS,
ConstantExpr::getXor(XorRHS, CI));
}
}