mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-11 13:44:28 +00:00
Fix InstCombine/2007-01-18-VectorInfLoop.ll, a case where instcombine
infinitely loops. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33343 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e68266dc76
commit
696ee0ab15
@ -3062,10 +3062,16 @@ Instruction *InstCombiner::visitAnd(BinaryOperator &I) {
|
||||
// See if we can simplify any instructions used by the instruction whose sole
|
||||
// purpose is to compute bits we don't care about.
|
||||
uint64_t KnownZero, KnownOne;
|
||||
if (!isa<PackedType>(I.getType()) &&
|
||||
SimplifyDemandedBits(&I, I.getType()->getIntegerTypeMask(),
|
||||
KnownZero, KnownOne))
|
||||
if (!isa<PackedType>(I.getType())) {
|
||||
if (SimplifyDemandedBits(&I, I.getType()->getIntegerTypeMask(),
|
||||
KnownZero, KnownOne))
|
||||
return &I;
|
||||
} else {
|
||||
if (ConstantPacked *CP = dyn_cast<ConstantPacked>(Op1)) {
|
||||
if (CP->isAllOnesValue())
|
||||
return ReplaceInstUsesWith(I, I.getOperand(0));
|
||||
}
|
||||
}
|
||||
|
||||
if (ConstantInt *AndRHS = dyn_cast<ConstantInt>(Op1)) {
|
||||
uint64_t AndRHSMask = AndRHS->getZExtValue();
|
||||
|
Loading…
Reference in New Issue
Block a user