mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Simplify the code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35275 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0b063def98
commit
9c636fe6f2
@ -6801,7 +6801,7 @@ static bool CanEvaluateInDifferentType(Value *V, const IntegerType *Ty,
|
||||
// already zeros.
|
||||
if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
|
||||
uint32_t BitWidth = OrigTy->getBitWidth();
|
||||
if (Ty->getBitWidth() < OrigTy->getBitWidth() &&
|
||||
if (Ty->getBitWidth() < BitWidth &&
|
||||
MaskedValueIsZero(I->getOperand(0),
|
||||
APInt::getAllOnesValue(BitWidth) &
|
||||
APInt::getAllOnesValue(Ty->getBitWidth()).zextOrTrunc(BitWidth).flip())
|
||||
|
Loading…
x
Reference in New Issue
Block a user