1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Delete trailing whitespace

llvm-svn: 264995
This commit is contained in:
Sanjoy Das 2016-03-31 05:14:29 +00:00
parent 3da81e80d0
commit 2fe82474a4

View File

@ -3549,7 +3549,7 @@ static SelectPatternResult matchSelectPattern(CmpInst::Predicate Pred,
return {(CmpLHS == FalseVal) ? SPF_ABS : SPF_NABS, SPNB_NA, false};
}
}
// Y >s C ? ~Y : ~C == ~Y <s ~C ? ~Y : ~C = SMIN(~Y, ~C)
if (const auto *C2 = dyn_cast<ConstantInt>(FalseVal)) {
if (C1->getType() == C2->getType() && ~C1->getValue() == C2->getValue() &&