mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
[CVP] fix formatting; NFC
llvm-svn: 326711
This commit is contained in:
parent
2d252e4a6c
commit
bb22c21149
@ -433,8 +433,7 @@ static bool hasPositiveOperands(BinaryOperator *SDI, LazyValueInfo *LVI) {
|
||||
}
|
||||
|
||||
static bool processSRem(BinaryOperator *SDI, LazyValueInfo *LVI) {
|
||||
if (SDI->getType()->isVectorTy() ||
|
||||
!hasPositiveOperands(SDI, LVI))
|
||||
if (SDI->getType()->isVectorTy() || !hasPositiveOperands(SDI, LVI))
|
||||
return false;
|
||||
|
||||
++NumSRems;
|
||||
@ -451,8 +450,7 @@ static bool processSRem(BinaryOperator *SDI, LazyValueInfo *LVI) {
|
||||
/// conditions, this can sometimes prove conditions instcombine can't by
|
||||
/// exploiting range information.
|
||||
static bool processSDiv(BinaryOperator *SDI, LazyValueInfo *LVI) {
|
||||
if (SDI->getType()->isVectorTy() ||
|
||||
!hasPositiveOperands(SDI, LVI))
|
||||
if (SDI->getType()->isVectorTy() || !hasPositiveOperands(SDI, LVI))
|
||||
return false;
|
||||
|
||||
++NumSDivs;
|
||||
|
Loading…
x
Reference in New Issue
Block a user