mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
ValueTracking: Small cleanup in ComputeNumSignBits
Constant contains the isAllOnesValue and isNullValue predicates, not ConstantInt. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224848 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
998ae69abe
commit
597e1ab1aa
@ -1768,7 +1768,7 @@ unsigned ComputeNumSignBits(Value *V, const DataLayout *TD,
|
||||
if (Tmp == 1) return 1; // Early out.
|
||||
|
||||
// Special case decrementing a value (ADD X, -1):
|
||||
if (ConstantInt *CRHS = dyn_cast<ConstantInt>(U->getOperand(1)))
|
||||
if (const auto *CRHS = dyn_cast<Constant>(U->getOperand(1)))
|
||||
if (CRHS->isAllOnesValue()) {
|
||||
APInt KnownZero(TyBits, 0), KnownOne(TyBits, 0);
|
||||
computeKnownBits(U->getOperand(0), KnownZero, KnownOne, TD, Depth+1, Q);
|
||||
@ -1793,7 +1793,7 @@ unsigned ComputeNumSignBits(Value *V, const DataLayout *TD,
|
||||
if (Tmp2 == 1) return 1;
|
||||
|
||||
// Handle NEG.
|
||||
if (ConstantInt *CLHS = dyn_cast<ConstantInt>(U->getOperand(0)))
|
||||
if (const auto *CLHS = dyn_cast<Constant>(U->getOperand(0)))
|
||||
if (CLHS->isNullValue()) {
|
||||
APInt KnownZero(TyBits, 0), KnownOne(TyBits, 0);
|
||||
computeKnownBits(U->getOperand(1), KnownZero, KnownOne, TD, Depth+1, Q);
|
||||
|
Loading…
Reference in New Issue
Block a user