We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 059d90d commit 59fe55fCopy full SHA for 59fe55f
llvm/lib/Target/ARM/ARMISelLowering.cpp
@@ -20178,7 +20178,7 @@ bool ARMTargetLowering::targetShrinkDemandedConstant(
20178
// code won't do this, so we have to do it explicitly to avoid an infinite
20179
// loop in obscure cases.)
20180
if (ExpandedMask == ~0U)
20181
- return TLO.CombineTo(Op, Op.getOperand(0));
+ return false;
20182
20183
auto IsLegalMask = [ShrunkMask, ExpandedMask](unsigned Mask) -> bool {
20184
return (ShrunkMask & Mask) == ShrunkMask && (~ExpandedMask & Mask) == 0;
0 commit comments