mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-12 07:37:34 +00:00
Delete unnecessary braces.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73663 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bf5ec1b9db
commit
fc3641b07a
@ -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