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 289fb1c commit 3a4d65eCopy full SHA for 3a4d65e
llvm/lib/Analysis/DemandedBits.cpp
@@ -80,7 +80,7 @@ void DemandedBits::determineLiveOperandBits(
80
bool ShiftLeft) {
81
APInt Range = APInt::getLowBitsSet(BitWidth, Max + 1) &
82
~APInt::getLowBitsSet(BitWidth, Min);
83
- using ShiftFn = APInt (APInt::*)(unsigned) const; // one-word shift overload
+ using ShiftFn = APInt (APInt::*)(unsigned) const;
84
auto Shift = ShiftLeft ? static_cast<ShiftFn>(&APInt::shl)
85
: static_cast<ShiftFn>(&APInt::lshr);
86
AB = APInt::getZero(BitWidth);
0 commit comments