mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-02 10:21:54 +00:00
Delete unnecessary braces.
llvm-svn: 73663
This commit is contained in:
parent
00e7ebbc38
commit
eb8d3f5fd5
@ -2408,12 +2408,11 @@ SCEVHandle ScalarEvolution::createSCEV(Value *V) {
|
||||
|
||||
APInt EffectiveMask = APInt::getLowBitsSet(BitWidth, BitWidth - LZ);
|
||||
|
||||
if (LZ != 0 && !((~A & ~KnownZero) & EffectiveMask)) {
|
||||
if (LZ != 0 && !((~A & ~KnownZero) & EffectiveMask))
|
||||
return
|
||||
getZeroExtendExpr(getTruncateExpr(getSCEV(U->getOperand(0)),
|
||||
IntegerType::get(BitWidth - LZ)),
|
||||
U->getType());
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user